Just thought you all might be interested.
I found a bug in the code if you remove a subscription (IE make it inactive) it will continue to download when you run --update.
I had to edit the following on line 492 of mythnettv
From
Code:
for row in db.GetRows('select * from mythnettv_subscriptions'):
To
Code:
for row in db.GetRows('select * from mythnettv_subscriptions where inactive is NULL'):
Thanks