[FIX] translate: timestamps in PO[T] header entries should use '%Y-%m-%d %H:%M %z' format, without %S

bzr revid: odo@openerp.com-20110112143141-oezd2djlce1r3x6p
This commit is contained in:
Olivier Dony 2011-01-12 15:31:41 +01:00
parent 1d12bcdc15
commit 0b81c2b136
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ class TinyPoFile(object):
'version': release.version,
'modules': reduce(lambda s, m: s + "#\t* %s\n" % m, modules, ""),
'bugmail': release.support_email,
'now': datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')+"+0000",
'now': datetime.utcnow().strftime('%Y-%m-%d %H:%M')+"+0000",
}
)