Commit 9c6f97b3 authored by Gabriel Monnerat's avatar Gabriel Monnerat

remove unnecessary quotes

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk/utils@42091 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 615dbcc6
......@@ -77,13 +77,13 @@ class OOHandler:
command_list = [path.exists(python) and python or "python",
pkg_resources.resource_filename(__name__,
path.join("helper", "unoconverter.py")),
"--uno_path='%s'" % self.uno_path,
"--office_binary_path='%s'" % self.office_binary_path,
"--document_url='%s'" % self.document.getUrl()]
"--uno_path=%s" % self.uno_path,
"--office_binary_path=%s" % self.office_binary_path,
'--document_url=%s' % self.document.getUrl()]
for arg in args:
command_list.insert(3, "--%s" % arg)
for k, v in kw.iteritems():
command_list.append("--%s='%s'" % (k, v))
command_list.append("--%s=%s" % (k, v))
return command_list
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment