mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 21:44:16 +02:00
[arch] fix: displaying '?' instead of '0' for dependency sizes
This commit is contained in:
@@ -335,7 +335,7 @@ class UpdatesSummarizer:
|
||||
|
||||
current_size = installed_sizes.get(pkg.name) if installed_sizes else None
|
||||
|
||||
if current_size is not None and pkgdata['s']:
|
||||
if current_size is not None and pkgdata['s'] is not None:
|
||||
requirement.extra_size = pkgdata['s'] - current_size
|
||||
|
||||
required_by = set()
|
||||
|
||||
Reference in New Issue
Block a user