se.py: removes error in passing options to a binary
authorNilay Vaish <nilay@cs.wisc.edu>
Tue, 11 Sep 2012 22:47:21 +0000 (17:47 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Tue, 11 Sep 2012 22:47:21 +0000 (17:47 -0500)
configs/example/se.py

index 1fefdc4fc5432456925822e1f14da96b04ac2132..887e414ca3dfe9e8c54676b0d48cf1d32f79fea1 100644 (file)
@@ -86,7 +86,7 @@ def get_processes(options):
         process.executable = wrkld
 
         if len(pargs) > idx:
-            process.cmd = [wrkld] + [" "] + [pargs[idx]]
+            process.cmd = [wrkld] + pargs[idx].split()
         else:
             process.cmd = [wrkld]