aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debiandistro.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-02-06 12:28:03 +0100
committerGuido Günther <agx@sigxcpu.org>2016-02-24 20:01:20 +0100
commit11ca10034c04267da8b00d2ef940b0548a13ef42 (patch)
tree4dbcb565d2afd2cac20eba2727a1f0e9dfd43914 /whatmaps/debiandistro.py
parent7e838a0c18f3ad0f574e3bd7c5c4949701264f01 (diff)
Use python3 instead of python2
Diffstat (limited to 'whatmaps/debiandistro.py')
-rw-r--r--whatmaps/debiandistro.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
index 2725265..32f3774 100644
--- a/whatmaps/debiandistro.py
+++ b/whatmaps/debiandistro.py
@@ -166,7 +166,7 @@ class DebianDistro(Distro):
security_update_origins = klass._security_update_origins()
security_updates = {}
- for pkg in pkgs.values():
+ for pkg in list(pkgs.values()):
cache_pkg = cache[pkg.name]
for cache_version in cache_pkg.version_list:
if pkg.version == cache_version.ver_str: