aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-08-14 22:52:06 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-08-14 22:52:06 -0700
commitf5426b4905d14a8fea3ae7258ee3c19fc22d7391 (patch)
tree5d507a82b2882df1a596ce83520d5f41cb3149d3
parentf24c574a1ad931ac64a90ca74be70b4a65d01f08 (diff)
downloadpandoc-f5426b4905d14a8fea3ae7258ee3c19fc22d7391.tar.gz
Small code cleanup.
-rwxr-xr-xscripts/abc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/abc.py b/scripts/abc.py
index 9c80fd6db..daecd1070 100755
--- a/scripts/abc.py
+++ b/scripts/abc.py
@@ -22,7 +22,7 @@ def abc2eps(abc, filetype, outfile):
p.stdin.write(abc)
p.communicate()
p.stdin.close()
- p = call(["convert", outfile + '.eps', outfile + '.' + filetype])
+ call(["convert", outfile + '.eps', outfile + '.' + filetype])
def abc(key, value, format):
if key == 'CodeBlock':