From 846070b240b095f7c56e13b34d9a7ecd12e75e18 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Thu, 2 Jun 2011 16:34:20 +0200 Subject: [PATCH] Fix typos in months names All months names are 3-letter abbreviated, but accidentally June and July slipped through. Thanks to the heads up by Philipp Kern . Signed-off-by: Sebastian Spaeth Signed-off-by: Nicolas Sebrecht --- offlineimap/folder/IMAP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/folder/IMAP.py b/offlineimap/folder/IMAP.py index b8d91c7..8dfca7a 100644 --- a/offlineimap/folder/IMAP.py +++ b/offlineimap/folder/IMAP.py @@ -127,7 +127,7 @@ class IMAPFolder(BaseFolder): #format this manually - otherwise locales could cause problems monthnames_standard = ["Jan", "Feb", "Mar", "Apr", "May", \ - "June", "July", "Aug", "Sep", "Oct", "Nov", "Dec"] + "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] our_monthname = monthnames_standard[oldest_time_struct[1]-1] daystr = "%(day)02d" % {'day' : oldest_time_struct[2]}