print() uses file=, not stream= -- fix that, fix the error
This commit is contained in:
parent
f1891fedb4
commit
35f4b9e601
1 changed files with 1 additions and 1 deletions
|
|
@ -172,4 +172,4 @@ class Daemon:
|
|||
|
||||
@classmethod
|
||||
def error(cls, line):
|
||||
print(line, stream=sys.stderr)
|
||||
print(line, file=sys.stderr)
|
||||
|
|
|
|||
Loading…
Reference in a new issue