Tiny style fixes

This commit is contained in:
red-agent 2009-10-06 23:26:22 +03:00
parent 416d2caf05
commit 3ef8557a8e
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ def is_in_path(command, return_abs_path=False):
return False
def exec_command(command):
subprocess.Popen(command + ' &', shell = True).wait()
subprocess.Popen('%s &' % command, shell=True).wait()
def build_command(executable, parameter):
# we add to the parameter (can hold path with spaces)