grim/local-pipelines

a45b6f4c3991
Parents 88d6a545c161
Children 7def2aab7ceb
vcs: decode byte string because python3 is stupid
--- a/pipelines/vcs.py Thu Jul 28 01:03:33 2016 -0700
+++ b/pipelines/vcs.py Thu Jul 28 15:12:46 2016 -0700
@@ -34,7 +34,7 @@
return subprocess.check_output(cmd.split(),
env=env,
stderr=open(os.devnull, 'w'),
- cwd=path).strip()
+ cwd=path).strip().decode('utf-8')
except subprocess.CalledProcessError:
return ''