Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/profiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/profiles.py')
-rw-r--r--archinstall/lib/profiles.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index 63d32afa..e22a3587 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -129,15 +129,11 @@ class Script():
if not namespace:
namespace = self.namespace
- if namespace in sys.modules:
- print(f"Found {self} in sys.modules, returning cached import.")
- return self
-
self.spec = importlib.util.spec_from_file_location(namespace, self.path)
imported = importlib.util.module_from_spec(self.spec)
sys.modules[namespace] = imported
- print(f"Imported {self} into sys.modules. Returning fresh copy.")
+ print(f"Imported {self} into sys.modules with namespace {namespace}.")
return self
def execute(self):