index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-12-06 11:29:44 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-12-06 11:29:44 +0100 |
commit | 9921276ea541a15b8c9bdcec40e53eb432c25817 (patch) | |
tree | 66053d136a862c87b95ad78e1ee48c3302551c6b /archinstall/lib | |
parent | 73ca83f2c9d3652216b50f7770204f138ccdc249 (diff) |
-rw-r--r-- | archinstall/lib/profiles.py | 3 |
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index 68d7a08c..a85e4f6e 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -115,8 +115,7 @@ class Script(): if namespace: self.namespace = namespace - print('Namespace:', namespace, self.path, self.namespace) - spec = importlib.util.spec_from_file_location(namespace, self.path) + spec = importlib.util.spec_from_file_location(self.namespace, self.path) imported = importlib.util.module_from_spec(spec) sys.modules[self.namespace] = imported |