reversed
This commit is contained in:
parent
e10e33ace2
commit
045b469e4a
1 changed files with 1 additions and 1 deletions
|
@ -34,6 +34,6 @@ class Remote:
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
lines = [f'Location: {self.location}',
|
lines = [f'Location: {self.location}',
|
||||||
'Archives:']
|
'Archives:']
|
||||||
for architecture, archive in sorted(self.archives.items()):
|
for architecture, archive in reversed(sorted(self.archives.items())):
|
||||||
lines.append(f'{architecture} → {archive}')
|
lines.append(f'{architecture} → {archive}')
|
||||||
return os.linesep.join(lines)
|
return os.linesep.join(lines)
|
||||||
|
|
Loading…
Reference in a new issue