Преглед на файлове

Fixed some errors in the setup file

Patrick Falls преди 12 години
родител
ревизия
2a7dcabd08
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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():