mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
index: smartcardoptions is a list or tuple, but only lists can be added
This commit is contained in:
parent
54257f8f6a
commit
7dcf4f5680
1 changed files with 1 additions and 1 deletions
|
|
@ -610,7 +610,7 @@ def extract_pubkey():
|
||||||
'-alias', common.config['repo_keyalias'],
|
'-alias', common.config['repo_keyalias'],
|
||||||
'-keystore', common.config['keystore'],
|
'-keystore', common.config['keystore'],
|
||||||
'-storepass:env', 'FDROID_KEY_STORE_PASS']
|
'-storepass:env', 'FDROID_KEY_STORE_PASS']
|
||||||
+ common.config['smartcardoptions'],
|
+ list(common.config['smartcardoptions']),
|
||||||
envs=env_vars, output=False, stderr_to_stdout=False)
|
envs=env_vars, output=False, stderr_to_stdout=False)
|
||||||
if p.returncode != 0 or len(p.output) < 20:
|
if p.returncode != 0 or len(p.output) < 20:
|
||||||
msg = "Failed to get repo pubkey!"
|
msg = "Failed to get repo pubkey!"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue