fdroid: python2 doesn't like print()

It just prints "()", which is stupid.
This commit is contained in:
Daniel Martí 2016-01-09 13:24:13 +01:00
parent bd29fce13b
commit 309660423c
1 changed files with 1 additions and 1 deletions

2
fdroid
View File

@ -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():