Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-12-06 12:50:51 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-12-06 12:50:51 +0100
commit393758ec243423d1d24c79fa47213fad05668ce5 (patch)
tree46e432c3ee5c2c10dc2a0358ba1af0850c68672f /archinstall/lib
parent7764804d4c57a9f89d00a5bb05d66c250ced04d3 (diff)
Removed debugging for walk
Application profiles now seam properly integrated by setup.py, remote profiles have not yet been tested.
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/profiles.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index a7b2603c..091550e0 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -23,9 +23,6 @@ def list_profiles(filter_irrelevant_macs=True, subpath=''):
cache = {}
# Grab all local profiles found in PROFILE_PATH
for PATH_ITEM in storage['PROFILE_PATH']:
- import time
- print('Walking:', os.path.abspath(os.path.expanduser(PATH_ITEM+subpath)))
- time.sleep(3)
for root, folders, files in os.walk(os.path.abspath(os.path.expanduser(PATH_ITEM+subpath))):
for file in files:
if os.path.splitext(file)[1] == '.py':