Package: python3-sh
Version: 1.14.2-1
Severity: minor
X-Debbugs-Cc: dfo...@gmail.com

Dear maintainer,

the description of python3-sh contains an example that uses a "print" statement
that worked with Python 2 but doesn't work with Python 3:
  from sh import ifconfig
  print ifconfig("eth0")

i.e. there must be round parens around the argument of print:
  from sh import ifconfig
  print(ifconfig("eth0"))

greetings,
Daniele

Reply via email to