index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/installer.py | 3 |
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index b45ad1dc..3daf96f4 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -363,7 +363,8 @@ class Installer(): return self.pacstrap(*packages) def install_profile(self, profile): - profile = Profile(self, profile) + if type(profile) == str: + profile = Profile(self, profile) self.log(f'Installing network profile {profile}', level=LOG_LEVELS.Info) return profile.install() |