From 9ad457c16fca3de118327ecd1a263552b01c5827 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 13 Apr 2017 11:58:56 +0200 Subject: [PATCH] fix pylink 'dict' has no member 'keystore' --- fdroidserver/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 2e79ea29..b0ff8d0a 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -1538,7 +1538,7 @@ def main(): config['keydname'] = 'CN=' + config['repo_keyalias'] + ', OU=F-Droid' common.write_to_config(config, 'keydname', config['keydname']) if 'keystore' not in config: - config['keystore'] = common.default_config.keystore + config['keystore'] = common.default_config['keystore'] common.write_to_config(config, 'keystore', config['keystore']) password = common.genpassword() -- 2.30.2