Browse Source

18938 Removed default args from start()

This was causing errors with the addition of the logfile arg.
Mike Smith 11 years ago
parent
commit
7c9c8dd04a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      finagle/setup.py
  2. 1 1
      spray/setup.py

+ 1 - 1
finagle/setup.py

@@ -4,7 +4,7 @@ import sys
 import time
 import os
 
-def start(args=None, logfile):
+def start(args, logfile):
 
 
     if os.name == 'nt':

+ 1 - 1
spray/setup.py

@@ -4,7 +4,7 @@ import sys
 import time
 import os
 
-def start(args=None, logfile):
+def start(args, logfile):
   if os.name == 'nt':
     subprocess.check_call('"..\\sbt\\sbt.bat" assembly', shell=True, cwd="spray")
   else: