Consider Data URI buffers in binary. Fixes #79.

This commit is contained in:
Syoyo Fujita
2018-07-11 02:46:52 +09:00
parent 81bbf86e2a
commit 39abfb5f91
4 changed files with 31 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ def run(filename):
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(stdout, stderr) = p.communicate()
except:
print "Failed to execute: ", cmd
print("Failed to execute: ", cmd)
raise
if p.returncode != 0: