This commit is contained in:
Eduard Braun 2016-08-23 20:26:45 +00:00 committed by GitHub
commit 2e9259ea6c

View file

@ -3342,6 +3342,9 @@ def getInOut(options):
outfile = sys.stdout.buffer outfile = sys.stdout.buffer
except AttributeError: except AttributeError:
outfile = sys.stdout outfile = sys.stdout
# enable quiet mode when writing output to stdout
# otherwise informational text output would be mixed into the SVG output
options.quiet = True
return [infile, outfile] return [infile, outfile]