Skip to content

Commit 97eedb5

Browse files
committed
Proper use of calendar library for months names
1 parent b9e25e5 commit 97eedb5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

accessories/data_fetcher/copyfiles.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import os, datetime, smtplib, optparse, glob, re
1717
from zipfile import ZipFile, ZIP_DEFLATED
1818
import ConfigParser
19+
from calendar import month_abbr
1920

2021
from time import mktime
2122
from email.MIMEMultipart import MIMEMultipart
@@ -25,8 +26,7 @@
2526
from email import Encoders
2627

2728
#Here we define some variables that are used all over the place
28-
MONTHS = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug','Sep', 'Oct', 'Nov', 'Dec']
29-
__version__ = 0.92
29+
__version__ = 0.93
3030

3131

3232
class cp_config():
@@ -296,7 +296,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
296296
print line
297297

298298
lineDate = datetime.datetime( (int(d[2]) < 2000)*2000 + int(d[2]), #year
299-
MONTHS.index(d[1])+1, #month as number
299+
month_abbr.index(d[1]), #month as number
300300
int(d[0]), #day
301301
int(t[0]), #hour
302302
int(t[1]), #minute
@@ -357,7 +357,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
357357

358358
ch_matrix = zip(*ch_matrix_r)
359359

360-
t_date = '%s %s %s' % (dd, MONTHS[int(mm)-1], startTime.year)
360+
t_date = '%s %s %s' % (dd, month_abbr[int(mm)], startTime.year)
361361

362362
for channel in ch_matrix:
363363

0 commit comments

Comments
 (0)