index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/profiles.py | 4 |
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index 091550e0..49a20794 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -150,14 +150,14 @@ class Profile(Script): return {'path' : self.path} def __repr__(self, *args, **kwargs): - return f'Profile({self.path})' + return f'Profile({os.path.basename(self.profile)})' def install(self): return self.execute() class Application(Profile): def __repr__(self, *args, **kwargs): - return f'Application({self._path} <"{self.path}">)' + return f'Application({os.path.basename(self.profile)})' @property def path(self): |