gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-deployment] branch master updated: decode / typo


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: decode / typo
Date: Thu, 10 Oct 2019 21:09:12 +0200

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

dold pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 319dad6  decode / typo
319dad6 is described below

commit 319dad6f01794ecfeda8f82b6d8f55b0e691c18a
Author: Florian Dold <address@hidden>
AuthorDate: Fri Oct 11 00:38:50 2019 +0530

    decode / typo
---
 bin/taler-deployment | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index dc5f93b..79e0bde 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -54,9 +54,10 @@ def ensure_activated():
         print("Please do 'source ~/activate' first.", file=sys.stderr)
         sys.exit(1)
     out = subprocess.check_output(
-        ["bash", "-c", "source ~/activate; echo $TALER_BOOTSTRAP_TIMESTAMP"]
+        ["bash", "-c", "source ~/activate; echo $TALER_BOOTSTRAP_TIMESTAMP"],
+        encoding="utf-8"
     )
-    out = out.decode("utf-8").strip(" \n")
+    out = out.strip(" \n")
     if out != ts:
         print(
             f"Please do 'source ~/.activate'. Current ts={ts}, new ts={out}",

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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