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

Commit

Permalink
Merge pull request #12 from cmccandless/bug/bad-autodetect
Browse files Browse the repository at this point in the history
Fix bug with auto-detected script path
  • Loading branch information
cmccandless authored Mar 7, 2018
2 parents 8963cb7 + 11b202f commit 0066208
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 0066208

Please sign in to comment.