Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MythUtil-Channel-XMLTV-getLineup
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MythTVServices():
self.request(service='Myth', api='version')

def request(self, service=None, api=None, data={}, method=None, stream=False):
version = '0.28'
version = '0.34'
headers = {'User-Agent':'{} Python Services API Client'.format(version),
'Accept':'application/json',
'Accept-Encoding':'gzip,deflate'}
Expand Down Expand Up @@ -393,7 +393,7 @@ if __name__ == '__main__':
break
if found and ((args.noReport is None) or ('changed' not in args.noReport)):
update = False
if ChannelServiceVersion >= versionTuple("1.9"):
if ChannelServiceVersion == versionTuple("1.9"):
data = {}
data['ChanId'] = mythChannel['ChanId']
else:
Expand Down