Tiny style fixes
This commit is contained in:
parent
416d2caf05
commit
3ef8557a8e
|
@ -356,7 +356,7 @@ def is_in_path(command, return_abs_path=False):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def exec_command(command):
|
def exec_command(command):
|
||||||
subprocess.Popen(command + ' &', shell = True).wait()
|
subprocess.Popen('%s &' % command, shell=True).wait()
|
||||||
|
|
||||||
def build_command(executable, parameter):
|
def build_command(executable, parameter):
|
||||||
# we add to the parameter (can hold path with spaces)
|
# we add to the parameter (can hold path with spaces)
|
||||||
|
|
Loading…
Reference in New Issue