Browse Source

wsgi: Fix stop()

INADA Naoki 11 years ago
parent
commit
09e3be6d2a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wsgi/setup.py

+ 1 - 1
wsgi/setup.py

@@ -21,7 +21,7 @@ def start(args, logfile, errfile):
         cwd="wsgi", stderr=errfile, stdout=logfile)
     return 0
 
-def stop(logfile):
+def stop(logfile, errfile):
     global proc
     if proc is None:
         return 0