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) raise BuildException("Failed to generate key", p.stdout)
# now show the lovely key that was just generated # now show the lovely key that was just generated
p = FDroidPopen(['keytool', '-list', '-v', p = FDroidPopen(['keytool', '-list', '-v',
'-keystore', keystore, '-alias', repo_keyalias], '-keystore', keystore, '-alias', repo_keyalias,
'-storepass:file', config['keystorepassfile']) '-storepass:file', config['keystorepassfile']])
logging.info(p.stdout.strip() + '\n\n') logging.info(p.stdout.strip() + '\n\n')