Traceback (most recent call last):
File "/usr/share/sopcast-player/lib/sopcast-player.py", line 452, in on_open_sop_address_activate
if clipboard[0:6].lower() == "sop://":
TypeError: 'NoneType' object is not subscriptable
-----
This should solve the issue:
clipboard = clipboard or ''
if clipboard.lower().startswith('sop://'):
// do stuff
Ubuntu 11.10 x86
Original issue reported on code.google.com by byashi...@gmail.com on 14 Feb 2012 at 4:32
Original issue reported on code.google.com by
byashi...@gmail.com
on 14 Feb 2012 at 4:32