Fix var name

This commit is contained in:
Jean-Marie Traissard 2006-09-28 10:56:03 +00:00
parent 72e8da7130
commit 19dbb37f80

View file

@ -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):