Avoid reference to undefined name: stderr does not exist, sys.stderr does

This commit is contained in:
practicalswift 2017-07-09 22:53:45 +02:00
parent 51cb6b8221
commit 9b94054b7c

View file

@ -140,7 +140,7 @@ if __name__ == '__main__':
if 'datadir' in settings and not use_userpass:
use_datadir = True
if not use_userpass and not use_datadir:
print("Missing datadir or username and/or password in cfg file", file=stderr)
print("Missing datadir or username and/or password in cfg file", file=sys.stderr)
sys.exit(1)
settings['port'] = int(settings['port'])