Commit 86eb5c02 by Gabriel Falcão

Merge pull request #291 from skoczen/master

Fixed parse_args call
parents d4302496 e85bc52f
...@@ -66,7 +66,7 @@ def main(args=sys.argv[1:]): ...@@ -66,7 +66,7 @@ def main(args=sys.argv[1:]):
help='Write JUnit XML to this file. Defaults to ' help='Write JUnit XML to this file. Defaults to '
'lettucetests.xml') 'lettucetests.xml')
options, args = parser.parse_args() options, args = parser.parse_args(args)
if args: if args:
base_path = os.path.abspath(args[0]) base_path = os.path.abspath(args[0])
......
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