From 9d8c576cb146d7787beb87b79d483de39f8fd39d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Wed, 19 Feb 2014 01:14:40 +0100 Subject: [PATCH] Don't use logging before it's set up --- fdroid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroid b/fdroid index a76c8105..77e468cf 100755 --- a/fdroid +++ b/fdroid @@ -58,7 +58,7 @@ def main(): print_help() sys.exit(0) else: - logging.error("Command '" + command + "' not recognised.\n") + print "Command '%s' not recognised.\n" % command print_help() sys.exit(1)