Skip to content

Commit

Permalink
fix error setupbase.py on windows (#5863)
Browse files Browse the repository at this point in the history
  • Loading branch information
EfimovVladimir authored and scottdraves committed Aug 18, 2017
1 parent 4195f07 commit 3cb889e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beakerx/setupbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def _access_check(fn, mode):
if sys.platform == "win32":
# The current directory takes precedence on Windows.
if os.curdir not in path:
os.path.insert(0, os.curdir)
os.sys.path.insert(0, os.curdir)

# PATHEXT is necessary to check on Windows.
pathext = os.environ.get("PATHEXT", "").split(os.pathsep)
Expand Down

0 comments on commit 3cb889e

Please sign in to comment.