Skip to content
Snippets Groups Projects
Commit 19dbb37f authored by jimpp's avatar jimpp
Browse files

Fix var name

parent 72e8da71
No related branches found
No related tags found
No related merge requests found
......@@ -383,7 +383,7 @@ def build_command(executable, parameter):
# we add to the parameter (can hold path with spaces)
# "" so we have good parsing from shell
parameter = parameter.replace('"', '\\"') # but first escape "
command = '%s "%s"' % (command , parameter)
command = '%s "%s"' % (executable , parameter)
return command
def launch_browser_mailer(kind, uri):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment