commit c577f87bcde635abab1491e5d3c6f48ae70c0b03
parent 281e2cc12a5ac85a213cf9bdee5a1752e272a0a9
Author: Özgür Kesim <oec@codeblau.de>
Date: Fri, 4 Oct 2024 20:36:43 +0200
[provision] fix string parameter for subprocess.run
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/talermerchantdemos/provision/provision.py b/talermerchantdemos/provision/provision.py
@@ -234,11 +234,11 @@ def provision(lang):
ret = subprocess.run(["taler-harness",
"deployment",
"provision-bank-and-merchant",
- "--legal-name='{n}'".format(n=fullname),
- "--id='{id}'".format(id=merchant_id),
- "--password='{pw}'".format(pw=access_token),
- "--merchant-management-token='{t}'".format(t=backend_apikeys["merchant"]),
- "--bank-admin-token='{t}'".format(t=backend_apikeys["bank"]),
+ "--legal-name={n}".format(n=fullname),
+ "--id={id}".format(id=merchant_id),
+ "--password={pw}".format(pw=access_token),
+ "--merchant-management-token={t}".format(t=backend_apikeys["merchant"]),
+ "--bank-admin-token={t}".format(t=backend_apikeys["bank"]),
backend_urls["merchant"],
backend_urls["bank"],
], capture_output=True)