diff -Nru podcastparser-0.6.0/debian/changelog podcastparser-0.6.1/debian/changelog --- podcastparser-0.6.0/debian/changelog 2016-12-06 07:05:06.000000000 +0000 +++ podcastparser-0.6.1/debian/changelog 2016-12-27 03:45:52.000000000 +0000 @@ -1,3 +1,10 @@ +podcastparser (0.6.1-1) unstable; urgency=medium + + * New upstream version. + * Correct the Vcs URLs. + + -- tony mancill Mon, 26 Dec 2016 19:45:52 -0800 + podcastparser (0.6.0-1) unstable; urgency=medium * Initial release (Closes: #847046) diff -Nru podcastparser-0.6.0/debian/control podcastparser-0.6.1/debian/control --- podcastparser-0.6.0/debian/control 2016-12-06 07:05:06.000000000 +0000 +++ podcastparser-0.6.1/debian/control 2016-12-27 03:45:52.000000000 +0000 @@ -14,8 +14,8 @@ Homepage: https://github.com/gpodder/podcastparser X-Python-Version: >= 2.6 X-Python3-Version: >= 3.2 -Vcs-Git: https://anonscm.debian.org/git/collab-maint/packages/podcastparser.git -Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/packages/podcastparser.git/ +Vcs-Git: https://anonscm.debian.org/git/collab-maint/podcastparser.git +Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/podcastparser.git/ Package: python-podcastparser Architecture: all diff -Nru podcastparser-0.6.0/podcastparser.py podcastparser-0.6.1/podcastparser.py --- podcastparser-0.6.0/podcastparser.py 2015-05-24 18:37:45.000000000 +0000 +++ podcastparser-0.6.1/podcastparser.py 2016-12-17 20:40:40.000000000 +0000 @@ -20,7 +20,7 @@ # Will be parsed by setup.py to determine package metadata __author__ = 'Thomas Perl ' -__version__ = '0.6.0' +__version__ = '0.6.1' __website__ = 'http://gpodder.org/podcastparser/' __license__ = 'ISC License' @@ -73,7 +73,7 @@ class RSS(Target): def start(self, handler, attrs): - if 'xml:base' in attrs: + if 'xml:base' in attrs.keys(): handler.set_base(attrs.get('xml:base')) diff -Nru podcastparser-0.6.0/.travis.yml podcastparser-0.6.1/.travis.yml --- podcastparser-0.6.0/.travis.yml 2015-05-24 18:37:45.000000000 +0000 +++ podcastparser-0.6.1/.travis.yml 2016-12-17 20:40:40.000000000 +0000 @@ -1,10 +1,15 @@ language: python python: - - "3.3" - - "3.2" - "2.7" + - "3.3" + - "3.4" + - "3.5" + - "3.5-dev" + - "3.6-dev" + - "nightly" - "pypy" + - "pypy3" install: - pip install -r requirements-test.txt