aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debiandistro.py
diff options
context:
space:
mode:
Diffstat (limited to 'whatmaps/debiandistro.py')
-rw-r--r--whatmaps/debiandistro.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
index 32f3774..1a1dbd4 100644
--- a/whatmaps/debiandistro.py
+++ b/whatmaps/debiandistro.py
@@ -165,9 +165,14 @@ class DebianDistro(Distro):
security_update_origins = klass._security_update_origins()
security_updates = {}
+ notfound = []
for pkg in list(pkgs.values()):
- cache_pkg = cache[pkg.name]
+ try:
+ cache_pkg = cache[pkg.name]
+ except KeyError:
+ notfound.append(pkg)
+ continue
for cache_version in cache_pkg.version_list:
if pkg.version == cache_version.ver_str:
for pfile, _ in cache_version.file_list:
@@ -176,4 +181,4 @@ class DebianDistro(Distro):
pfile.archive == origin[1]:
security_updates[pkg] = pkg
break
- return security_updates
+ return (security_updates, notfound)