1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

index: smartcardoptions is a list or tuple, but only lists can be added

This commit is contained in:
Hans-Christoph Steiner 2020-08-04 17:26:29 +02:00
parent 54257f8f6a
commit 7dcf4f5680

View File

@ -610,7 +610,7 @@ def extract_pubkey():
'-alias', common.config['repo_keyalias'],
'-keystore', common.config['keystore'],
'-storepass:env', 'FDROID_KEY_STORE_PASS']
+ common.config['smartcardoptions'],
+ list(common.config['smartcardoptions']),
envs=env_vars, output=False, stderr_to_stdout=False)
if p.returncode != 0 or len(p.output) < 20:
msg = "Failed to get repo pubkey!"