diff -Nru mythtv-0.28.1+fixes.20171102.8e5fadd/debian/changelog mythtv-0.28.1+fixes.20171103.b2abb61/debian/changelog --- mythtv-0.28.1+fixes.20171102.8e5fadd/debian/changelog 2017-11-02 01:04:02.000000000 +0000 +++ mythtv-0.28.1+fixes.20171103.b2abb61/debian/changelog 2017-11-03 01:03:54.000000000 +0000 @@ -1,18 +1,18 @@ -mythtv (2:0.28.1+fixes.20171102.8e5fadd-0ubuntu0mythbuntu2) xenial; urgency=medium +mythtv (2:0.28.1+fixes.20171103.b2abb61-0ubuntu0mythbuntu2) xenial; urgency=medium * Scripted Build from fixes git packaging [4f6bcc5] - * Packaging changes between 20160325 and 20171102: + * Packaging changes between 20160325 and 20171103: * [dd75c01] use init script to be more compatible to systemd/upstart in backports * [b7c38ab] make sure to set buildroot * [7a4983b] cover one more pro file for mysql5.7 fix * [8d19bc0] let mysql-server-5.7 resolve things * [35b1bba] Add in support to compile against mysql 5.7 (LP: #1528583) - * Automated Build: New upstream checkout (8e5fadd) - * >>Upstream changes since last upload (7c931f17): - * [8e5fadd] Use mysql_options() to specify reconnection. + * Automated Build: New upstream checkout (b2abb61) + * >>Upstream changes since last upload (8e5fadd): + * [b2abb61] Check for an empty banner list before running it. - -- Mythbuntu Automated Package Builder Thu, 02 Nov 2017 01:04:00 +0000 + -- Mythbuntu Automated Package Builder Fri, 03 Nov 2017 01:03:52 +0000 mythtv (2:0.28.0+fixes.20160325.2520617-0ubuntu3) xenial; urgency=medium diff -Nru mythtv-0.28.1+fixes.20171102.8e5fadd/debian/DESCRIBE mythtv-0.28.1+fixes.20171103.b2abb61/debian/DESCRIBE --- mythtv-0.28.1+fixes.20171102.8e5fadd/debian/DESCRIBE 2017-11-02 01:03:55.000000000 +0000 +++ mythtv-0.28.1+fixes.20171103.b2abb61/debian/DESCRIBE 2017-11-03 01:03:47.000000000 +0000 @@ -1,2 +1,2 @@ BRANCH="fixes/0.28" -SOURCE_VERSION="v0.28.1-60-g8e5fadd" +SOURCE_VERSION="v0.28.1-61-gb2abb61" diff -Nru mythtv-0.28.1+fixes.20171102.8e5fadd/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py mythtv-0.28.1+fixes.20171103.b2abb61/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py --- mythtv-0.28.1+fixes.20171102.8e5fadd/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py 2017-10-19 01:08:39.000000000 +0000 +++ mythtv-0.28.1+fixes.20171103.b2abb61/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py 2017-11-03 01:00:56.000000000 +0000 @@ -953,6 +953,8 @@ """ log().debug('Getting season banners for %s' % (sid)) bannersEt = self._getetsrc(self.config['url_seriesBanner'] % sid) + if not bannersEt: + return banners = {} for cur_banner in bannersEt.keys(): banners_info = self._getetsrc(self.config['url_seriesBannerInfo'] % (sid, cur_banner))