Fix error format string error in AssertionError

Signed-off-by: Niels Thykier <niels@thykier.net>
ubuntu/rebased
Niels Thykier 6 years ago
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…
Cancel
Save