PyDaemon icon indicating copy to clipboard operation
PyDaemon copied to clipboard

two errors: in 60 str subd.py

Open vdubc opened this issue 12 years ago • 3 comments

in file subd.py(60 str):

print "usage: %s %s" % sys.argv[0] % str(self.ReactDict)

  1. double string formatting operator(%)
  2. undefined "self"

vdubc avatar Oct 09 '13 08:10 vdubc

print "usage: %s %s" % sys.argv[0] % ReactDict

Is that what you've meant?

MartSlaaf avatar Oct 10 '13 19:10 MartSlaaf

print "usage: %s %s" % (sys.argv[0], ReactDict)

vdubc avatar Oct 11 '13 05:10 vdubc

thx. )

MartSlaaf avatar Oct 11 '13 13:10 MartSlaaf