repository
This commit is contained in:
parent
a6f125c8c3
commit
1c6a28d7c6
1 changed files with 6 additions and 5 deletions
|
@ -12,8 +12,9 @@ class Repository:
|
||||||
.strftime('%Y%m%d%H%M%S'))
|
.strftime('%Y%m%d%H%M%S'))
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f'''\
|
lines = [
|
||||||
Directory: {self.directory}
|
f'Directory: {self.directory}',
|
||||||
→ {os.path.realpath(self.directory)}
|
f' → {os.path.realpath(self.directory)}',
|
||||||
Temporary: {self.tmp}
|
f'Temporary: {self.tmp}',
|
||||||
'''
|
]
|
||||||
|
return os.linesep.join(lines)
|
||||||
|
|
Loading…
Reference in a new issue