Python2 compat for Inkscape
This commit is contained in:
parent
130f719ba9
commit
abb7706b6d
|
@ -523,7 +523,11 @@ class Boxes:
|
||||||
|
|
||||||
self.formats.convert(self.output, self.format)
|
self.formats.convert(self.output, self.format)
|
||||||
if self.inkscapefile:
|
if self.inkscapefile:
|
||||||
svgutil.svgMerge(self.output, self.inkscapefile, sys.stdout.buffer)
|
try:
|
||||||
|
out = sys.stdout.buffer
|
||||||
|
except AttributeError:
|
||||||
|
out= sys.stdout
|
||||||
|
svgutil.svgMerge(self.output, self.inkscapefile, out)
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
### Turtle graphics commands
|
### Turtle graphics commands
|
||||||
|
|
Loading…
Reference in New Issue