mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-10 05:57:28 +00:00
Sort dependency list when outputting an excuse.
Signed-off-by: Adam D. Barratt <adam@adam-barratt.org.uk>
This commit is contained in:
parent
418a9db9f9
commit
1f909bca4d
@ -133,7 +133,7 @@ class Excuse:
|
||||
(self.daysold, self.mindays))
|
||||
for x in self.htmlline:
|
||||
res = res + "<li>" + x + "\n"
|
||||
for x in self.deps:
|
||||
for x in sorted(self.deps):
|
||||
if x in self.invalid_deps:
|
||||
res = res + "<li>Depends: %s <a href=\"#%s\">%s</a> (not considered)\n" % (self.name, x, x)
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user