mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-13 23:38:20 +00:00
Flatten the defaultdict(set) for unsat_deps into a standard dict for output
This commit is contained in:
parent
f32907acea
commit
b16530a37d
@ -263,7 +263,7 @@ class Excuse(object):
|
||||
if break_deps:
|
||||
dep_data['unimportant-dependencies'] = sorted(break_deps)
|
||||
if self.unsat_deps:
|
||||
dep_data['unsatisfiable-dependencies'] = self.unsat_deps
|
||||
dep_data['unsatisfiable-dependencies'] = {x: sorted(self.unsat_deps[x]) for x in self.unsat_deps}
|
||||
if self.needs_approval:
|
||||
status = 'not-approved'
|
||||
for h in self.hints:
|
||||
|
Loading…
x
Reference in New Issue
Block a user