Small code cleanup.

This commit is contained in:
John MacFarlane 2013-08-14 22:52:06 -07:00
parent f24c574a1a
commit f5426b4905

View file

@ -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':