diff --git a/debian/changelog b/debian/changelog index f54f18c..bd7fd56 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libatasmart (0.19-2) UNRELEASED; urgency=low + + * debian/local/apport-hook.py: Fix syntax to be Python 3 compatible. + (LP: #1013171) + + -- Martin Pitt Fri, 15 Jun 2012 08:29:53 +0200 + libatasmart (0.19-1) unstable; urgency=low * New upstream release. diff --git a/debian/local/apport-hook.py b/debian/local/apport-hook.py index ba1926b..a5153a5 100644 --- a/debian/local/apport-hook.py +++ b/debian/local/apport-hook.py @@ -27,6 +27,6 @@ if __name__ == '__main__': r = {} add_info(r) - for k, v in r.iteritems(): - print '%s: "%s"' % (k, v) + for k, v in r.items(): + print('%s: "%s"' % (k, v))