From 3ef8557a8e43b420a9c0488bce3b55e0176a560e Mon Sep 17 00:00:00 2001 From: red-agent Date: Tue, 6 Oct 2009 23:26:22 +0300 Subject: [PATCH] Tiny style fixes --- src/common/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/helpers.py b/src/common/helpers.py index 7d6ba431d..842342dae 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -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)