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:
authorAnton Hvornum <anton@hvornum.se>2021-03-21 16:35:26 +0100
committerAnton Hvornum <anton@hvornum.se>2021-03-21 16:35:26 +0100
commit3baaefb97db79f52f49f1d5e203cf03fb5cb4c86 (patch)
tree0fa7db1bfab22b71e7f9cd051dd56e3b0652804f /archinstall/lib/profiles.py
parentcbb4629849a924590dd162f33af7c280241fd992 (diff)
Cleaned up after some debugging.
Diffstat (limited to 'archinstall/lib/profiles.py')
-rw-r--r--archinstall/lib/profiles.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index ee2ff39a..e9639451 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -1,7 +1,7 @@
import os, urllib.request, urllib.parse, ssl, json, re
import importlib.util, sys, glob, hashlib
from collections import OrderedDict
-from .general import multisplit, sys_command, log
+from .general import multisplit, sys_command
from .exceptions import *
from .networking import *
from .output import log, LOG_LEVELS
@@ -77,7 +77,7 @@ class Script():
self.examples = None
self.namespace = os.path.splitext(os.path.basename(self.path))[0]
self.original_namespace = self.namespace
- print(f"Script {self} loaded with namespace: {self.namespace}")
+ log(f"Script {self} has been loaded with namespace '{self.namespace}'")
def __enter__(self, *args, **kwargs):
self.execute()
@@ -133,8 +133,6 @@ class Script():
self.spec = importlib.util.spec_from_file_location(self.namespace, self.path)
imported = importlib.util.module_from_spec(self.spec)
sys.modules[self.namespace] = imported
-
- print(f"Imported {self} into sys.modules with namespace {self.namespace}")
return self
@@ -175,7 +173,6 @@ class Profile(Script):
# trigger a traditional:
# if __name__ == 'moduleName'
if '__name__' in source_data and '_prep_function' in source_data:
- print(f"Checking if {self} has _prep_function by importing with namespace {self.namespace}.py")
with self.load_instructions(namespace=f"{self.namespace}.py") as imported:
if hasattr(imported, '_prep_function'):
return True