Skip to content

Commit

Permalink
#47 - support [png, svg, txt, utxt, latex] output image formats - fix…
Browse files Browse the repository at this point in the history
… verbose
  • Loading branch information
overlord authored and jvantuyl committed Feb 23, 2018
1 parent 3f25da8 commit 03f6bfa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion diagram/plantuml.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def _generate(self):
# http://en.plantuml.com/command-line
command = [
'java',
'-v', # verbose
'-DPLANTUML_LIMIT_SIZE=50000', # max output image height
'-jar',
self.proc.plantuml_jar_path,
Expand All @@ -91,6 +90,8 @@ def _generate(self):
command.append("-charset")
command.append('UTF-8')

print("Command: %s" % (command))

puml = execute(
command,
stdin=PIPE,
Expand Down

0 comments on commit 03f6bfa

Please sign in to comment.