as shell, also works fine/linux 3.5
authorAurelien Campeas
Mon, 14 Sep 2009 09:37:14 +0200
branch3.5
changeset 3202 241ae91e9ab7
parent 3201 8af05e82510c
child 3203 1366cacd5387
as shell, also works fine/linux
common/i18n.py
--- a/common/i18n.py	Fri Sep 11 18:49:48 2009 +0200
+++ b/common/i18n.py	Mon Sep 14 09:37:14 2009 +0200
@@ -45,7 +45,7 @@
     """
     print cmd.replace(os.getcwd() + os.sep, '')
     from subprocess import call
-    status = call(cmd)
+    status = call(cmd, shell=True)
     if status != 0:
         raise Exception('status = %s' % status)