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 <pkern@debian.org>. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
b20f5192fb
commit
846070b240
@ -127,7 +127,7 @@ class IMAPFolder(BaseFolder):
|
|||||||
|
|
||||||
#format this manually - otherwise locales could cause problems
|
#format this manually - otherwise locales could cause problems
|
||||||
monthnames_standard = ["Jan", "Feb", "Mar", "Apr", "May", \
|
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]
|
our_monthname = monthnames_standard[oldest_time_struct[1]-1]
|
||||||
daystr = "%(day)02d" % {'day' : oldest_time_struct[2]}
|
daystr = "%(day)02d" % {'day' : oldest_time_struct[2]}
|
||||||
|
Loading…
Reference in New Issue
Block a user