Merge pull request #1538 from kevans91/daemon_error_fix
print() uses file=, not stream= -- fix that, fix the error
This commit is contained in:
commit
aeb1970270
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