Skip to content

Commit

Permalink
Merge pull request #291 from skoczen/master
Browse files Browse the repository at this point in the history
Fixed parse_args call
  • Loading branch information
gabrielfalcao committed Sep 26, 2012
2 parents d430249 + e85bc52 commit 86eb5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lettuce/bin.py
Expand Up @@ -66,7 +66,7 @@ def main(args=sys.argv[1:]):
help='Write JUnit XML to this file. Defaults to '
'lettucetests.xml')

options, args = parser.parse_args()
options, args = parser.parse_args(args)
if args:
base_path = os.path.abspath(args[0])

Expand Down

0 comments on commit 86eb5c0

Please sign in to comment.