Skip to content

Commit

Permalink
Removing debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
jsseidel committed Apr 23, 2019
1 parent 13cf4fc commit d3b3421
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions bin/flt-plantuml.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,6 @@ def plantuml(key, value, format, meta):
with open(src, "w") as f:
f.write(txt)

p = Popen(["whereis", "plantuml"], stderr=PIPE, stdout=PIPE)
(stdout, stderr) = p.communicate()
sys.stderr.write(stdout.decode() + "\n")
sys.stderr.write(stderr.decode() + "\n")

p = Popen(["plantuml", "-t" + filetype, src], stderr=PIPE, stdout=PIPE)
(stdout, stderr) = p.communicate()
if stderr.decode() != "":
Expand Down

0 comments on commit d3b3421

Please sign in to comment.