commit 4ab581df8f99d1fe65ce15fe5c60984ad358dba2
parent c5616a8283fb7e919c90c24c94bdd9113b80bbc4
Author: rexxnor <rexxnor+gnunet@brief.li>
Date: Thu, 9 May 2019 16:32:25 +0200
bugfix
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/ascension/ascension.py b/ascension/ascension.py
@@ -593,6 +593,7 @@ class Ascender():
stdout=sp.PIPE,
stderr=sp.DEVNULL)
logging.info("executed command: %s", " ".join(ret.args))
+ pkey_zone = ret.stdout.decode().strip()
except sp.CalledProcessError:
output = ret.stdout.decode().strip()
pkey_zone = re.findall("^[\w\d]{52}$", output, re.M)[0]