[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-deployment] branch master updated: remove dead code
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-deployment] branch master updated: remove dead code |
Date: |
Fri, 27 Apr 2018 16:06:23 +0200 |
This is an automated email from the git hooks/post-receive script.
marcello pushed a commit to branch master
in repository deployment.
The following commit(s) were added to refs/heads/master by this push:
new eb67e49 remove dead code
eb67e49 is described below
commit eb67e49a80b1d440f78a26c06a0cceadd2e70d64
Author: Marcello Stanisci <address@hidden>
AuthorDate: Fri Apr 27 16:06:09 2018 +0200
remove dead code
---
config/generate-config | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config/generate-config b/config/generate-config
index be9de02..cef07d1 100755
--- a/config/generate-config
+++ b/config/generate-config
@@ -255,7 +255,7 @@ def merchant_wf(envname, acct_no, standalone):
salt="SALT"
)
- return (instance_name, json.dumps(data, indent=2))
+ return json.dumps(data, indent=2)
def exchange_wf(envname, wfname, acct_no, name, standalone):
if standalone:
@@ -317,7 +317,7 @@ def main(currency, envname, outdir, shared_outdir,
exchange_pub, standalone):
d = os.path.join(shared_outdir, "merchant", "wire")
os.makedirs(d, exist_ok=True)
- for name, data in merchant_wireformats:
+ for data in merchant_wireformats:
filename = os.path.join(d, "merchant.json")
f = open(filename, "w")
f.write(data)
--
To stop receiving notification emails like this one, please contact
address@hidden
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [taler-deployment] branch master updated: remove dead code,
gnunet <=