mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-23 08:21:30 +00:00
Fix error format string error in AssertionError
Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
fc834624fc
commit
6a3d100b92
@ -316,7 +316,7 @@ class InstallabilityTesterBuilder(object):
|
|||||||
# At the same time, intern the rdep sets
|
# At the same time, intern the rdep sets
|
||||||
for pkg in reverse_package_table:
|
for pkg in reverse_package_table:
|
||||||
if pkg not in package_table: # pragma: no cover
|
if pkg not in package_table: # pragma: no cover
|
||||||
raise RuntimeError("%s/%s/%s referenced but not added!" % pkg)
|
raise AssertionError("%s referenced but not added!" % str(pkg))
|
||||||
deps, con = package_table[pkg]
|
deps, con = package_table[pkg]
|
||||||
rdeps, rcon, rdep_relations = reverse_package_table[pkg]
|
rdeps, rcon, rdep_relations = reverse_package_table[pkg]
|
||||||
if rcon:
|
if rcon:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user