diff options
Diffstat (limited to 'extras')
-rwxr-xr-x | extras/autoship.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extras/autoship.py b/extras/autoship.py index 715e1cf..b9b498e 100755 --- a/extras/autoship.py +++ b/extras/autoship.py @@ -21,6 +21,8 @@ def get_project_info(top=None): """Load wscript to get project information (name, version, and so on)""" import importlib + import importlib.machinery + import importlib.util project_dir = top or os.getcwd() wscript_path = os.path.join(project_dir, "wscript") |