Skip to content

Commit 9ac4fee

Browse files
committed
Fix regression in 1ce2c7e
1 parent 02e2fa2 commit 9ac4fee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

usr/lib/linuxmint/mintUpdate/mintUpdate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ def show_error(self, error_msg):
634634

635635

636636
@_idle
637-
def show_updates_in_UI(self, num_visible, download_size, is_self_update, model_items):
637+
def show_updates_in_UI(self, num_visible, num_software, num_security, download_size, is_self_update, model_items):
638638
if num_visible > 0:
639639
self.logger.write("Found %d software updates" % num_visible)
640640
if is_self_update:
@@ -2341,7 +2341,7 @@ def show_updates(self, updates):
23412341
download_size += update.size
23422342

23432343
# Updates found, update status message
2344-
self.show_updates_in_UI(num_visible, download_size, is_self_update, model_items)
2344+
self.show_updates_in_UI(num_visible, num_software, num_security, download_size, is_self_update, model_items)
23452345

23462346
if FLATPAK_SUPPORT and self.flatpak_updater.error is not None and not is_self_update:
23472347
self.logger.write("Could not check for flatpak updates: %s" % self.flatpak_updater.error)

0 commit comments

Comments
 (0)