[mythtv-users] Error with Mirobridge

Doug Vaughan r.d.vaughan at rogers.com
Sun Dec 16 15:05:50 UTC 2012


Stephen,
     I am running MythyTV v0.26+Fixes and MiroBridge but am not having 
this issue. Here is a test to try.

1) Start a terminal session on the backend you are running MiroBridge
2) Copy and paste the following lines into the terminal session:

mythpython --version
python
from MythTV import Record
makeRecordRule = {'chanid': 999999, 'description': u'Test of create 
record rule', 'autometadata': 1, 'season': 1, 'episode': 1, 'category': 
u'TEST', 'station': u'TestStation', 'inetref': '012345', 'title': 'test 
series', }
record = Record().create(makeRecordRule)
record
record.delete()
exit()

3) If there was an abort hit "ctrl-D" to exit the python session

4) Assuming that you get an abort like you did with MiroBridge, please 
copy and paste the whole test's output into a reply email or create a 
pastebin and reply with the link.

Here is what this test looks like on my machine which does not 
excperience an abort:

$ mythpython --version
MythTV Python Bindings
   local versions
     bindings version:         0.26.0.0
     ttvdb version:            1.2.1
     tmdb version:             v0.2.6
   external versions
     lxml version:             2.3.2
     MySQLdb version:          1.2.3.final.0
   protocol versions
     backend:                  75
     schema:                   1307
     music schema:             1018
     netvision schema:         1007
$ python
Python 2.7.3 (default, Aug  1 2012, 05:14:39)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
 >>> from MythTV import Record
 >>> makeRecordRule = {'chanid': 999999, 'description': u'Test of create 
record rule', 'autometadata': 1, 'season': 1, 'episode': 1, 'category': 
u'TEST', 'station': u'TestStation', 'inetref': '012345', 'title': 'test 
series', }
 >>> record = Record().create(makeRecordRule)
 >>> record
<Record Rule 'test series', Type 4 at 0x28e2da0>
 >>> record.delete()
 >>> exit()

If you did not get an abort the recording rule that was created is also 
deleted by this same code.


More information about the mythtv-users mailing list