Ticket #8649: recstatus.patch

File recstatus.patch, 926 bytes (added by Doug Haber <doug@…>, 14 years ago)
  • mythtv/bindings/python/MythTV/methodheap.py

     
    577577        Supports the following keywords:
    578578            title,      subtitle,   chanid,     starttime,  endtime,
    579579            category,   seriesid,   programid,  station,    duplicate,
    580             generic
     580            generic,    recstatus
    581581        """
    582582
    583583        if init:
    584584            return ('oldrecorded', OldRecorded, ())
    585585        if key in ('title','subtitle','chanid','starttime','endtime',
    586586                        'category','seriesid','programid','station',
    587                         'duplicate','generic'):
     587                        'duplicate','generic', 'recstatus'):
    588588            return ('oldrecorded.%s=%%s' % key, value, 0)
    589589        return None
    590590