From ae0ca52557001470cbf991a19dde01e175006269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 6 Dec 2013 21:31:47 +0100 Subject: [PATCH] Forgot a couple continues --- fdroidserver/common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 298eb39d..e1713d5f 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -84,6 +84,7 @@ def read_config(opts, config_file='config.py'): for key in ('mvn3', 'gradle'): if key not in config: print "WARNING: %s not set in config" % key + continue val = config[key] executable = find_executable(val) if not executable: @@ -94,6 +95,7 @@ def read_config(opts, config_file='config.py'): for key in ('sdk_path', 'ndk_path', 'build_tools'): if key not in config: print "WARNING: %s not set in config" % key + continue val = config[key] if key == 'build_tools': val = os.path.join(config['sdk_path'], 'build-tools', val)