Tried it using http://ezrss.it/feeds/ and it was successful, so
there's something in the ShowRss it's failing on.
Following advice above, I changed:
except ValueError:
to:
except TypeError:
It now works, but gives the following error, major difference now
being that it continues running :)
20091217.22:31 CRITICAL Traceback (most recent call last):
File "/opt/local/lib/python2.5/site-packages/rssdler.py", line 634,
in getFil$ try: tparse = bdecode(data)
File "/opt/local/lib/python2.5/site-packages/rssdler.py", line 916,
in bdecode x = open(x, 'r').read()
TypeError: file() argument 1 must be (encoded string without NULL
bytes), not s$File was supposed to be torrent data, but could not be
bdecoded
Martin