Comment 35 for bug 444654

Revision history for this message
Linus C Unneback (linusu) wrote :

I was experimenting a bit and edited "/usr/lib/python2.6/dist-packages/gwibber/actions.py" at line 38. Instead of using msg.text I tried with msg['text'] since the error suggested that msg was of the type 'dict'. To correctly fix this line one needs to change everything on that line to:

tab_label = msg["original_title"] if "original_title" in msg else msg["text"]

Unfortunate, fixing this line makes makes the program crash on the next line instead.

AttributeError: 'GwibberClient' object has no attribute 'add_transient_stream'

Hope that it helps //Linus Unnebäck