Browse Source

fix flask-pypy

INADA Naoki 12 years ago
parent
commit
b34014edfd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      flask/setup_pypy.py

+ 1 - 1
flask/setup_pypy.py

@@ -8,7 +8,7 @@ proc = None
 def start(args):
   global proc
   setup_util.replace_text("flask/app.py", "DBHOSTNAME", args.database_host)
-  proc = subprocess.Popen("~/FrameworkBenchmarks/installs/pypy-2.0/bin/pypy run_pypy.py --port=8080 --logging=error", shell=True, cwd="flask")
+  proc = subprocess.Popen("~/FrameworkBenchmarks/installs/pypy-2.0.2/bin/pypy run_pypy.py --port=8080 --logging=error", shell=True, cwd="flask")
   return 0
 
 def stop():