chiark / gitweb /
fdroid: python2 doesn't like print()
[fdroidserver.git] / fdroid
diff --git a/fdroid b/fdroid
index f4d23cbfb337f911205cb223be352eb56d0a026d..0774aeb85e49957aa895713612719e318e5a7f67 100755 (executable)
--- a/fdroid
+++ b/fdroid
@@ -51,7 +51,7 @@ def print_help():
     print("Valid commands are:")
     for cmd, summary in commands.items():
         print("   " + cmd + ' ' * (15 - len(cmd)) + summary)
-    print()
+    print("")
 
 
 def main():
@@ -137,7 +137,7 @@ def main():
         sys.exit(1)
     # These should only be unexpected crashes due to bugs in the code
     # str(e) often doesn't contain a reason, so just show the backtrace
-    except Exception, e:
+    except Exception as e:
         logging.critical("Unknown exception found!")
         raise
     sys.exit(0)