Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nfs3/lib/nfs3/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import os as _os, sys as _sys
# Python 3: make the package directory importable so the historic bare
# (implicit-relative) imports such as ``import nfs3_const`` keep working.
_sys.path.insert(1, _os.path.dirname(_os.path.abspath(__file__)))
Loading