|
16 | 16 | import os, datetime, smtplib, optparse, glob, re
|
17 | 17 | from zipfile import ZipFile, ZIP_DEFLATED
|
18 | 18 | import ConfigParser
|
| 19 | +from calendar import month_abbr |
19 | 20 |
|
20 | 21 | from time import mktime
|
21 | 22 | from email.MIMEMultipart import MIMEMultipart
|
|
25 | 26 | from email import Encoders
|
26 | 27 |
|
27 | 28 | #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 |
30 | 30 |
|
31 | 31 |
|
32 | 32 | class cp_config():
|
@@ -296,7 +296,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
|
296 | 296 | print line
|
297 | 297 |
|
298 | 298 | 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 |
300 | 300 | int(d[0]), #day
|
301 | 301 | int(t[0]), #hour
|
302 | 302 | int(t[1]), #minute
|
@@ -357,7 +357,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
|
357 | 357 |
|
358 | 358 | ch_matrix = zip(*ch_matrix_r)
|
359 | 359 |
|
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) |
361 | 361 |
|
362 | 362 | for channel in ch_matrix:
|
363 | 363 |
|
|
0 commit comments