oops
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Fri, 15 Jan 2010 10:25:46 +0000 (10:25 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Fri, 15 Jan 2010 10:25:46 +0000 (10:25 +0000)
system/utils.py

index 19113b0..a7637e6 100644 (file)
@@ -25,7 +25,7 @@ def system(command,background=False,silent=False):
         print 'dry_run:',command
         return 0
     
-    if silent :    command += "2> /dev/null"
+    if silent :    command += " 2> /dev/null"
     if background: command += " &"
     if silent:
         print '.',