fix for date formatting issue (#3693)
This commit is contained in:
parent
2cf49f3de6
commit
85782f9c29
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class EmailReader:
|
||||||
self.connection.select()
|
self.connection.select()
|
||||||
|
|
||||||
if len(self._unread_ids) == 0:
|
if len(self._unread_ids) == 0:
|
||||||
search = "SINCE {0:%d-%b-%y}".format(datetime.date.today())
|
search = "SINCE {0:%d-%b-%Y}".format(datetime.date.today())
|
||||||
if self._last_id is not None:
|
if self._last_id is not None:
|
||||||
search = "UID {}:*".format(self._last_id)
|
search = "UID {}:*".format(self._last_id)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue