Typos in method calls resulting in bugs
[email protected] Tue, 15 Sep 2009 06:51:40 -0000
| Newsgroups | gmane.comp.python.twisted.bugs |
|---|---|
| Message-ID | <[email protected]> |
New submission from Magneto <None>:
def search_SENTBEFORE(self, query, id, msg):
date = msg.getHeader(False, 'date').get('date', '')
def search_SENTON(self, query, id, msg):
date = msg.getHeader(False, 'date').get('date', '')
def search_SENTSINCE(self, query, id, msg):
date = msg.getHeader(False, 'date').get('date', '')
It should be msg.getHeaders, (missing "s"). duh....
----------
Type : defect
Component: mail
Keywords : imap bugs
Priority : normal
Nosy :
----------
http://twistedmatrix.com/trac/ticket/4028