--- /usr/lib/python2.6/dist-packages/gwibber/microblog/buzz.py 2010-09-17 07:22:53.000000000 +0300 +++ /usr/lib/python2.6/dist-packages/gwibber/microblog/buzz.py 2010-10-15 01:07:09.668818999 +0300 @@ -60,7 +60,12 @@ class Client: "sender": self._actor(data["actor"]), } - m["text"] = data["object"]["content"] + try: + m["text"] = data["object"]["content"] + except KeyError: + m["text"] = data["object"]["title"] + except: + m["text"] = "" if data.get("source", {}).get("title", 0) == "Twitter": m["text"] = m["text"].split(">:", 1)[1].strip()