Skip to content

Commit

Permalink
Fixed parse_args() call to use the args if passed in.
Browse files Browse the repository at this point in the history
  • Loading branch information
skoczen committed Sep 26, 2012
1 parent d430249 commit e85bc52
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 e85bc52

Please sign in to comment.