Przeglądaj źródła

Fixed some errors in the setup file

Patrick Falls 12 lat temu
rodzic
commit
2a7dcabd08
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      jester/setup.py

+ 1 - 1
jester/setup.py

@@ -11,7 +11,7 @@ def start(args):
   subprocess.check_call("sudo /usr/local/nginx/sbin/nginx -c " + home + "/FrameworkBenchmarks/jester/config/nginx.conf", shell=True)
   
   for i in range(0, 8):
-    subprocess.Popen("./hello 900" + i + " > /dev/null", shell=True, cwd="jester")
+    subprocess.Popen("./hello 900" + str(i) + " > /dev/null", shell=True, cwd="jester")
   return 0
 
 def stop():