forked from Github/appendfilename
fixed gmtime to localtime
This commit is contained in:
parent
f9cdc5147b
commit
c9103427be
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Time-stamp: <2013-05-16 22:52:45 vk>
|
||||
# Time-stamp: <2013-05-21 12:01:01 vk>
|
||||
|
||||
## TODO:
|
||||
## * fix parts marked with «FIXXME»
|
||||
|
|
@ -26,7 +26,7 @@ import pdb
|
|||
|
||||
PROG_VERSION_NUMBER = u"0.1"
|
||||
PROG_VERSION_DATE = u"2013-05-16"
|
||||
INVOCATION_TIME = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
|
||||
INVOCATION_TIME = time.strftime("%Y-%m-%dT%H:%M:%S", time.localtime())
|
||||
FILENAME_TAG_SEPARATOR = u' -- ' ## between file name and (optional) list of tags
|
||||
BETWEEN_TAG_SEPARATOR = u' ' ## between tags (not that relevant in this tool)
|
||||
TEXT_SEPARATOR = u' ' ## between old file name and inserted text
|
||||
|
|
|
|||
Loading…
Reference in a new issue