mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-04-15 21:21:10 +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
|
||||
for pkg in reverse_package_table:
|
||||
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]
|
||||
rdeps, rcon, rdep_relations = reverse_package_table[pkg]
|
||||
if rcon:
|
||||
|
Loading…
x
Reference in New Issue
Block a user