Skip to content
This repository has been archived by the owner on Oct 5, 2020. It is now read-only.

Commit

Permalink
Fix bug with auto-detected script path
Browse files Browse the repository at this point in the history
  • Loading branch information
cmccandless committed Mar 7, 2018
1 parent 8963cb7 commit 11b202f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changelog
=========
v1.1.6
------
- Fix bug with auto-detected script path

v1.1.5
------
- Add jsonschema validation for definitions file
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.5
1.1.6
2 changes: 1 addition & 1 deletion argutil/argutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def create(
):
if filepath is None:
filepath = get_file(
__stackdepth__=kwargs.get('_-stackdepth__', 1) + 1
__stackdepth__=kwargs.get('__stackdepth__', 1) + 1
)
else:
filepath = os.path.abspath(filepath)
Expand Down

0 comments on commit 11b202f

Please sign in to comment.