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.feeds+github@gmail.com>2020-10-20 20:39:46 +0200
committerGitHub <noreply@github.com>2020-10-20 20:39:46 +0200
commit2fc51d540a78da3d7cf24b595a611f45915a55d0 (patch)
tree4e2b46493fadf9cf777e9371545a2e93d1510b17 /archinstall/lib/profiles.py
parentf32f1e238a0a36b0d1b5220df6f6f053c6c4168c (diff)
parent5ded22a5d0f5fb1cf1d4d95945f655e8b6a33896 (diff)
Merge pull request #57 from vamega/fixup
Fix minor issues like typos and code style violations.
Diffstat (limited to 'archinstall/lib/profiles.py')
-rw-r--r--archinstall/lib/profiles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index e018f753..322436c0 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -106,7 +106,7 @@ class Profile():
# To avoid profiles importing the wrong 'archinstall',
# we need to ensure that this current archinstall is in sys.path
archinstall_path = os.path.abspath(f'{os.path.dirname(__file__)}/../../')
- if not archinstall_path in sys.path:
+ if archinstall_path not in sys.path:
sys.path.insert(0, archinstall_path)
instructions = self.load_instructions()