From 309660423c567d276c3e46a94adb3234bdcdf810 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Sat, 9 Jan 2016 13:24:13 +0100 Subject: [PATCH] fdroid: python2 doesn't like print() It just prints "()", which is stupid. --- fdroid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(): -- 2.30.2