| version 1.1 | | version 1.2 |
|---|
| | |
| #Updated to use new path functions in CFPython -Todd Mitchell | | #Updated to use new path functions in CFPython -Todd Mitchell |
| | | |
| import shelve | | import shelve |
| | | import os.path |
| | | |
| | | import CFPython |
| import CFgetPaths | | |
| from time import localtime, strftime, time | | from time import localtime, strftime, time |
| | | |
| class CFLog: | | class CFLog: |
| | | |
| logdb_file = '%scrossfirelog' % (CFgetPaths.getPaths('localdir')) | | logdb_file = os.path.join(CFPython.GetLocalDirectory(),'crossfirelog') |
| logdb = {} | | logdb = {} |
| | | |
| def __init__(self): | | def __init__(self): |