summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-08-13 02:24:55 +0000
committerKrzysztof Kosiński <tweenk.pl@gmail.com>2010-08-13 02:24:55 +0000
commitf6c47ff3b057cb08f5d05201ecf3b252f75d85cb (patch)
tree45517a622723b66a534140e8390110fef81fb375
parentTranslations. Romanian translation update by Cristian Secară. (diff)
downloadinkscape-f6c47ff3b057cb08f5d05201ecf3b252f75d85cb.tar.gz
inkscape-f6c47ff3b057cb08f5d05201ecf3b252f75d85cb.zip
Fix uniconvertor extensions to work with UC version 1.1.5
(bzr r9706)
-rw-r--r--share/extensions/uniconv-ext.py2
-rw-r--r--share/extensions/uniconv_output.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/uniconv-ext.py b/share/extensions/uniconv-ext.py
index d3d69546c..a7608bc56 100644
--- a/share/extensions/uniconv-ext.py
+++ b/share/extensions/uniconv-ext.py
@@ -57,7 +57,7 @@ if cmd == None:
'http://sk1project.org/modules.php?name=Products&product=uniconvertor\n'+\
'and install into your Inkscape\'s Python location\n'))
sys.exit(1)
- cmd = 'python -c "import uniconvertor"'
+ cmd = 'python -c "import uniconvertor; uniconvertor.uniconv_run()"'
run((cmd+' "%s" "%%s"') % sys.argv[1].replace("%","%%"), "UniConvertor")
diff --git a/share/extensions/uniconv_output.py b/share/extensions/uniconv_output.py
index f7746c2f4..720666103 100644
--- a/share/extensions/uniconv_output.py
+++ b/share/extensions/uniconv_output.py
@@ -123,7 +123,7 @@ def get_command():
'http://sk1project.org/modules.php?name=Products&product=uniconvertor\n'+\
'and install into your Inkscape\'s Python location\n'))
sys.exit(1)
- cmd = 'python -c "from uniconvertor import uniconv; uniconv();"'
+ cmd = 'python -c "import uniconvertor; uniconvertor.uniconv_run();"'
return cmd