Corrected subprocess.call invocation.

This commit is contained in:
Sergey Popov 2008-05-06 09:35:03 +00:00
parent 58d9cc9da7
commit 572f5d705a

View file

@ -659,7 +659,7 @@ def InstallFilteredHook(target, source, env):
command = command % ("50%", source, target)
if env["verbose"]:
print command
call(command)
call(Split(command))
return None
# Just copy non-images, and images if tinygui is off
if env["verbose"]: