We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc21afa commit e6cc702Copy full SHA for e6cc702
gitdb/__init__.py
@@ -13,7 +13,8 @@
13
def _init_externals():
14
"""Initialize external projects by putting them into the path"""
15
for module in ('smmap',):
16
- sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', module))
+ if 'PYOXIDIZER' not in os.environ:
17
+ sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', module))
18
19
try:
20
__import__(module)
0 commit comments