Skip to content

Commit

Permalink
Correct URL for MythXML.getExpiring()
Browse files Browse the repository at this point in the history
This changes getExpiring() from using the incorrect "Dvr/GetExpiring" to
the correct "Dvr/GetExpiringList".

Fixes #10968

Signed-off-by: Raymond Wagner <rwagner@mythtv.org>
  • Loading branch information
kd7lxl authored and wagnerrp committed Sep 1, 2012
1 parent b393cbc commit e4c6e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/bindings/python/MythTV/methodheap.py
Expand Up @@ -1199,7 +1199,7 @@ def getExpiring(self):
"""
Returns a list of Program objects for expiring shows on the backend.
"""
for prog in self._request('Dvr/GetExpiring')\
for prog in self._request('Dvr/GetExpiringList')\
.readJSON()['ProgramList']['Programs']:
yield Program.fromJSON(prog, self.db)

Expand Down

0 comments on commit e4c6e5d

Please sign in to comment.