1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

fix bug listing new key created in init

Oops, a typo with a ] in e53092cffa
This commit is contained in:
Hans-Christoph Steiner 2014-04-03 23:00:36 -04:00
parent faf0c4381f
commit f582cd7a9e

View 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')