From: Daniel Martí Date: Sat, 9 Jan 2016 12:24:13 +0000 (+0100) Subject: fdroid: python2 doesn't like print() X-Git-Tag: 0.6.0~33 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=309660423c567d276c3e46a94adb3234bdcdf810;p=fdroidserver.git fdroid: python2 doesn't like print() It just prints "()", which is stupid. --- diff --git a/fdroid b/fdroid index e112690f..0774aeb8 100755 --- 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():