what started as a wrong file name -- download_station_client.py which got corrected in the latest release to downloadstation_client.py but the change was not reflected in init.py which still referenced download_station (instead of downloadstation) causing the following error:
File "/volume1/@appstore/sickbeard-custom/var/SickBeard/medusa/clients/torrent/init.py", line 37, in get_client_module
return import('{prefix}.{name}_client'.format(prefix=name, name=name.lower()), fromlist=_clients)
ImportError: No module named download_station_client
So, a quick rename of downloadstation_client.py to download_station_client.py fixed this error this time around.
what started as a wrong file name -- download_station_client.py which got corrected in the latest release to downloadstation_client.py but the change was not reflected in init.py which still referenced download_station (instead of downloadstation) causing the following error:
File "/volume1/@appstore/sickbeard-custom/var/SickBeard/medusa/clients/torrent/init.py", line 37, in get_client_module return import('{prefix}.{name}_client'.format(prefix=name, name=name.lower()), fromlist=_clients) ImportError: No module named download_station_client
So, a quick rename of downloadstation_client.py to download_station_client.py fixed this error this time around.