index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-12-06 13:10:10 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-12-06 13:10:10 +0100 |
commit | eaf45282764bcd71fc714e820e133ff3921dfa58 (patch) | |
tree | 9b454627b2cafc453bd372e64f3abd1009c854c8 | |
parent | 393758ec243423d1d24c79fa47213fad05668ce5 (diff) |
-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): |