Rename unused variable/return value to "_"

This makes it more explicit that we are not using the value for
anything (and its name did not match it content due to a mistake
in 5d49a41204).

Signed-off-by: Niels Thykier <niels@thykier.net>
ubuntu/rebased
Niels Thykier 6 years ago
parent 4dc2cf7172
commit 82ff8010e2
No known key found for this signature in database
GPG Key ID: A65B78DBE67C7AAC

@ -2057,10 +2057,10 @@ class Britney(object):
if init:
# init => a hint (e.g. "easy") - so do the hint run
(_, nuninst_end, undo_list,) = self.try_migration(selected,
self.nuninst_orig,
transaction,
stop_on_first_regression=False)
(_, nuninst_end, _) = self.try_migration(selected,
self.nuninst_orig,
transaction,
stop_on_first_regression=False)
if recurse:
# Ensure upgrade_me and selected do not overlap, if we

Loading…
Cancel
Save