Skip to content

Commit 3520595

Browse files
committed
dbus: print_recent_history: use passed in parameter
1 parent e8f5927 commit 3520595

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dnf-behave-tests/dnf/steps/dbus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def print_recent_history_pkgs(pkglist):
6565
6666
def print_recent_history(dbus_output):
6767
for key in ["installed", "upgraded", "downgraded", "removed"]:
68-
pkgs = changeset.get(key, [])
68+
pkgs = dbus_output.get(key, [])
6969
print("{{}}: {{}}".format(key, len(pkgs)))
7070
print_recent_history_pkgs(pkgs)
7171

0 commit comments

Comments
 (0)