Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/profiles.py4
1 files changed, 2 insertions, 2 deletions
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):