Comment 3 for bug 366594

Revision history for this message
Alex Rybicki (alex-rybicki) wrote :

my mistake, the trunk was merged a few days ago.
the fix for this bug is to replace
line 420 of file /cGmail/checkers/gmailchecker.py :
               mailbox = "%<email address hidden>" % self.username
with
line 420 of file /cGmail/checkers/gmailchecker.py :
               mailbox = "%s@" % self.username

heres a diff output:
420c420
< mailbox = "%<email address hidden>" % self.username
---
> mailbox = "%s" % self.username