summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2015-05-07 15:42:37 +0000
committerJazzyNico <nicoduf@yahoo.fr>2015-05-07 15:42:37 +0000
commit3e3607e37584c4688dcaf35bac415a409893adef (patch)
tree422564a982e4e27d02f43ec64f814c90e28f4fe6
parentfix sorts (diff)
downloadinkscape-3e3607e37584c4688dcaf35bac415a409893adef.tar.gz
inkscape-3e3607e37584c4688dcaf35bac415a409893adef.zip
Exporting. Fix for Bug #1452560 (Rectangles missing from saved SIF).
Fixed bugs: - https://launchpad.net/bugs/1452560 (bzr r14120)
-rwxr-xr-xshare/extensions/synfig_prepare.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/synfig_prepare.py b/share/extensions/synfig_prepare.py
index c6ad48c97..ebc50fd8e 100755
--- a/share/extensions/synfig_prepare.py
+++ b/share/extensions/synfig_prepare.py
@@ -86,7 +86,7 @@ class InkscapeActionGroup(object):
def select_id(self, object_id):
"""Select object with given id"""
- self.command += "--select='%s' " % (object_id)
+ self.command += "--select=%s " % (object_id)
if not self.has_selection:
self.has_selection = True