From: Daniel Martí Date: Thu, 30 May 2013 14:36:39 +0000 (+0200) Subject: Don't import fdroid twice, allow -h without config X-Git-Tag: 0.1~558^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5b6647af3067bd807584a31e4ec72b9bcfa139a2;p=fdroidserver.git Don't import fdroid twice, allow -h without config --- diff --git a/fdroid b/fdroid index 202735a6..a14ea17b 100755 --- a/fdroid +++ b/fdroid @@ -18,7 +18,6 @@ # along with this program. If not, see . import sys -import fdroidserver commands = [ "build", @@ -45,8 +44,7 @@ def main(): command = sys.argv[1] if not command in commands: - print "Command '" + command + "' not recognised." - print "" + print "Command '" + command + "' not recognised.\n" print_help() sys.exit(1)