Use print functions everywhere
This commit is contained in:
parent
cb18fcb04a
commit
17331136ca
@ -368,7 +368,7 @@ class SyncApp(object):
|
|||||||
if config.has_option("sync_app", "auth_db_path"):
|
if config.has_option("sync_app", "auth_db_path"):
|
||||||
self.user_manager = SqliteUserManager(config.get("sync_app", "auth_db_path"))
|
self.user_manager = SqliteUserManager(config.get("sync_app", "auth_db_path"))
|
||||||
else:
|
else:
|
||||||
print "WARNING: auth_db_path not set, ankisyncd will accept any password"
|
print("WARNING: auth_db_path not set, ankisyncd will accept any password")
|
||||||
self.user_manager = SimpleUserManager()
|
self.user_manager = SimpleUserManager()
|
||||||
|
|
||||||
self.collection_manager = getCollectionManager()
|
self.collection_manager = getCollectionManager()
|
||||||
@ -715,10 +715,10 @@ def main():
|
|||||||
httpd = make_server('', config.getint("sync_app", "port"), ankiserver)
|
httpd = make_server('', config.getint("sync_app", "port"), ankiserver)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
print "Starting..."
|
print("Serving HTTP on {} port {}...".format(*httpd.server_address))
|
||||||
httpd.serve_forever()
|
httpd.serve_forever()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print "Exiting..."
|
print("Exiting...")
|
||||||
finally:
|
finally:
|
||||||
shutdown()
|
shutdown()
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user