Okay, I think I have the same bug, and I also fix that for myself. Hope
this works for you.

Here comes the patch for /usr/lib/python2.6/dist-
packages/gwibber/microblog/twitter.py

135c135,137
<     if parse: return [getattr(self, "_%s" % parse)(m) for m in data]
---
> 
>     cleandata = [m for m in data if m!= None]
>     if parse:  return [getattr(self, "_%s" % parse)(m) for m in cleandata]

This bug is due to 'None' type element appear in data list from twitter,
I have no idea it comes from Twitter directly or Gwibber itself.

I just try to remove the invalid element before parse that, and make my
gwibber works again.

Mark

-- 
 Gwibber won't update timeline
https://bugs.launchpad.net/bugs/617395
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to