gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-merchant-demos] 04/08: [provision] fix string parameter for subpr


From: Admin
Subject: [taler-merchant-demos] 04/08: [provision] fix string parameter for subprocess.run
Date: Wed, 12 Feb 2025 00:15:17 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository taler-merchant-demos.

commit c577f87bcde635abab1491e5d3c6f48ae70c0b03
Author: Özgür Kesim <oec@codeblau.de>
AuthorDate: Fri Oct 4 20:36:43 2024 +0200

    [provision] fix string parameter for subprocess.run
---
 talermerchantdemos/provision/provision.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/talermerchantdemos/provision/provision.py 
b/talermerchantdemos/provision/provision.py
index 9606a01..b98b41c 100644
--- 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)

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]