Comment 2 for bug 264231

Revision history for this message
Greg Grossmeier (greg.grossmeier) wrote :

So, it was a simple fix.

The line testing if a message is a reply to you had:
self.is_reply = ("@%s" % self.username) in self.text

but it should be:
self.is_reply = ("@%s " % self.username) in self.text

Which just adds a space to the string test.

This was in both microblog/twitter.py and microblog/identica.py

Attached is a patch (bzr diff) for these two files.