chiark / gitweb /
fix bug listing new key created in init
authorHans-Christoph Steiner <hans@eds.org>
Fri, 4 Apr 2014 03:00:36 +0000 (23:00 -0400)
committerHans-Christoph Steiner <hans@eds.org>
Mon, 7 Apr 2014 20:00:18 +0000 (16:00 -0400)
Oops, a typo with a ] in e53092cffa993031cdd6f3269ca792e42b41a9a6

fdroidserver/init.py

index 36e38e52f75350694e046ff73f63ad02582600f5..4d9bc84511c5f767db8387dade8611029b16d7aa 100644 (file)
@@ -71,8 +71,8 @@ def genkey(keystore, repo_keyalias, password, keydname):
         raise BuildException("Failed to generate key", p.stdout)
     # now show the lovely key that was just generated
     p = FDroidPopen(['keytool', '-list', '-v',
-                '-keystore', keystore, '-alias', repo_keyalias],
-                '-storepass:file', config['keystorepassfile'])
+                     '-keystore', keystore, '-alias', repo_keyalias,
+                     '-storepass:file', config['keystorepassfile']])
     logging.info(p.stdout.strip() + '\n\n')