print() uses file=, not stream= -- fix that, fix the error

This commit is contained in:
Kyle Evans 2016-10-07 14:45:59 -05:00
parent f1891fedb4
commit 35f4b9e601

View file

@ -172,4 +172,4 @@ class Daemon:
@classmethod
def error(cls, line):
print(line, stream=sys.stderr)
print(line, file=sys.stderr)