Skip to content

Commit

Permalink
BUG Fix passing an argument to jug.main()
Browse files Browse the repository at this point in the history
  • Loading branch information
luispedro committed Jun 11, 2020
1 parent c1d732d commit 9b460cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Post version 2.0.0+
* Fix handling of `JUG_EXIT_IF_FILE_EXISTS` environmental variable
* Fix passing an argument to jug.main() function

Post version 2.0.0
* Extend `--pdb` to exceptions raised while importing the jugfile (issue
Expand Down
2 changes: 1 addition & 1 deletion jug/jug.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def main(argv=None):
from .options import parse
if argv is None:
from sys import argv
options = parse()
options = parse(argv)
jugspace = None
store = None

Expand Down

0 comments on commit 9b460cc

Please sign in to comment.