diff options
| author | John MacFarlane <fiddlosopher@gmail.com> | 2013-08-14 22:52:06 -0700 |
|---|---|---|
| committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-08-14 22:52:06 -0700 |
| commit | f5426b4905d14a8fea3ae7258ee3c19fc22d7391 (patch) | |
| tree | 5d507a82b2882df1a596ce83520d5f41cb3149d3 /scripts | |
| parent | f24c574a1ad931ac64a90ca74be70b4a65d01f08 (diff) | |
| download | pandoc-f5426b4905d14a8fea3ae7258ee3c19fc22d7391.tar.gz | |
Small code cleanup.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/abc.py | 2 |
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': |
