Skip to content

Commit

Permalink
Fix recorded->recordedprogram JOIN in Python bindings search function.
Browse files Browse the repository at this point in the history
Signed-off-by: Raymond Wagner <rwagner@mythtv.org>
  • Loading branch information
JD67 authored and wagnerrp committed Jul 20, 2013
1 parent a8722fa commit 3a082c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/bindings/python/MythTV/methodheap.py
Expand Up @@ -652,7 +652,8 @@ def searchRecorded(self, init=False, key=None, value=None):
init.require = ('livetv',)
init.joins = (init.Join(table='recordedprogram',
tableto='recorded',
fields=('chanid','starttime')),
fieldsfrom=('chanid','starttime'),
fieldsto=('chanid','progstart')),
init.Join(table='recordedcredits',
tableto='recorded',
fieldsfrom=('chanid','starttime'),
Expand Down

0 comments on commit 3a082c5

Please sign in to comment.