From b6958e34a03488f5615c91c5e1e29c0085e324cb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Jun 2020 17:36:04 +0200 Subject: Add missing importlib submodule imports --- extras/autoship.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'extras/autoship.py') 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") -- cgit v1.2.1