Commit bc41b65c by Greg Price

Fix paver test_js task to work without -p flag

parent 3c999122
...@@ -33,7 +33,7 @@ def test_js(options): ...@@ -33,7 +33,7 @@ def test_js(options):
elif mode == 'dev': elif mode == 'dev':
suite = getattr(options, 'suite', None) suite = getattr(options, 'suite', None)
coverage = False coverage = False
port = getattr(options, 'port') port = getattr(options, 'port', None)
else: else:
sys.stderr.write("Invalid mode. Please choose 'dev' or 'run'.") sys.stderr.write("Invalid mode. Please choose 'dev' or 'run'.")
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment