summaryrefslogtreecommitdiff
path: root/taskflow/examples/resume_many_flows.py
diff options
context:
space:
mode:
authorIvan A. Melnikov <imelnikov@griddynamics.com>2013-10-10 14:14:03 +0400
committerIvan A. Melnikov <imelnikov@griddynamics.com>2013-10-10 14:51:35 +0400
commitc5b84d021df305d5022a1012d788f855b7a2c40a (patch)
tree1500cd49157eb1fe262f45e04dc237325d5250e2 /taskflow/examples/resume_many_flows.py
parent026fc8329a94d9678ef8b6807b6c5de456930c14 (diff)
downloadtaskflow-c5b84d021df305d5022a1012d788f855b7a2c40a.tar.gz
Fix python3 compatibility issues in examples
Change-Id: I024207864668751455874cf3cb60de31cc01de87
Diffstat (limited to 'taskflow/examples/resume_many_flows.py')
-rw-r--r--taskflow/examples/resume_many_flows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/examples/resume_many_flows.py b/taskflow/examples/resume_many_flows.py
index 93d3e2f..8a7b346 100644
--- a/taskflow/examples/resume_many_flows.py
+++ b/taskflow/examples/resume_many_flows.py
@@ -36,7 +36,7 @@ def _exec(cmd, add_env=None):
rc = proc.returncode
if rc != 0:
raise RuntimeError("Could not run %s [%s]", cmd, rc)
- print(stdout)
+ print(stdout.decode())
def _path_to(name):