Browse Source

Oops -- fix cwd in setup files

Rami Chowdhury 12 years ago
parent
commit
77f94023cf
3 changed files with 3 additions and 3 deletions
  1. 1 1
      falcon/setup.py
  2. 1 1
      falcon/setup_py3.py
  3. 1 1
      falcon/setup_pypy.py

+ 1 - 1
falcon/setup.py

@@ -18,7 +18,7 @@ def start(args):
         "-b", "0.0.0.0:8080",
         '-w', str(NCPU*3),
         "--log-level=critical"],
-        cwd="flask")
+        cwd="falcon")
     return 0
 
 def stop():

+ 1 - 1
falcon/setup_py3.py

@@ -18,7 +18,7 @@ def start(args):
         "-b", "0.0.0.0:8080",
         '-w', str(NCPU*3),
         "--log-level=critical"],
-        cwd="flask")
+        cwd="falcon")
     return 0
 
 def stop():

+ 1 - 1
falcon/setup_pypy.py

@@ -18,7 +18,7 @@ def start(args):
         "-b", "0.0.0.0:8080",
         '-w', str(NCPU*3),
         "--log-level=critical"],
-        cwd="flask")
+        cwd="falcon")
     return 0
 
 def stop():