Index: trunk/fundraiser-statistics/fundraiser-scripts/classes/TimestampProcessor.py |
— | — | @@ -3,9 +3,6 @@ |
4 | 4 | |
5 | 5 | This module effectively functions as a Singleton class. |
6 | 6 | |
7 | | -TimestampProcesser module is used to provide definitions for dealing with date and time |
8 | | -objects. This is primarily used to handle |
9 | | - |
10 | 7 | TimestampProcesser facilitates the processing of timestamps used in the CiviCRM and "faulkner" mySQL |
11 | 8 | databases. This includes mapping among timestamp formats and converting those formats to indexed |
12 | 9 | lists and dictionaries. |
— | — | @@ -38,15 +35,15 @@ |
39 | 36 | |
40 | 37 | __author__ = "Ryan Faulkner" |
41 | 38 | __revision__ = "$Rev$" |
42 | | -__date__ = "April 8th, 2010" |
| 39 | +__date__ = "April 8th, 2011" |
43 | 40 | |
44 | 41 | |
45 | 42 | import sys |
46 | | -sys.path.append('../') |
| 43 | +# sys.path.append('../') |
47 | 44 | |
48 | 45 | import datetime |
49 | 46 | import math |
50 | | -import miner_help as mh |
| 47 | +import Fundraiser_Tools.miner_help as mh |
51 | 48 | |
52 | 49 | |
53 | 50 | """ |
— | — | @@ -480,4 +477,5 @@ |
481 | 478 | """ append the last items onto time lists """ |
482 | 479 | times.append(end_time) |
483 | 480 | |
484 | | - return [times, time_indices] |
\ No newline at end of file |
| 481 | + return [times, time_indices] |
| 482 | + |