salopensource / sal-scripts

Apache License 2.0
23 stars 31 forks source link

Prioritize internal directories in the Python search paths #42

Closed IngoMeyer441 closed 5 years ago

IngoMeyer441 commented 5 years ago

Before this PR, internal directories were appended to the default Python search paths. This could lead to import problems if the user has installed modules which match filenames of internal modules (e.g. utils.py) in the default Python search paths. In order to prevent these problem, internal search paths are inserted in front of the existing Python search paths.

IngoMeyer441 commented 5 years ago

This PR is related to #40.