Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-03-21 14:21:47 +0100
committerAnton Hvornum <anton@hvornum.se>2021-03-21 14:21:47 +0100
commit1998e0378cbf2348289a56679ddcfbfd58160987 (patch)
treeaed4d8683853d6d6268196096d92867881aa56f0 /archinstall
parent1fdda954dcdc69982de94e3c2000666379eb9b67 (diff)
Debugging tainted namespace on profile modules.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/profiles.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index bafa76df..a8a18f54 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -129,8 +129,8 @@ class Script():
if namespace:
self.namespace = namespace
- if '.py' in self.namespace:
- raise KeyError("Debugging")
+ #if '.py' in self.namespace:
+ # raise KeyError("Debugging")
self.spec = importlib.util.spec_from_file_location(self.namespace, self.path)
imported = importlib.util.module_from_spec(self.spec)