mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 10:44:09 -04:00
News download: When generating periodicals for the SONY use the local timezone in the SONY specific metadata
This commit is contained in:
parent
ceca434483
commit
26d3a9bb00
@ -9,6 +9,7 @@ from uuid import uuid4
|
|||||||
|
|
||||||
from calibre.constants import __appname__, __version__
|
from calibre.constants import __appname__, __version__
|
||||||
from calibre import strftime, prepare_string_for_xml as xml
|
from calibre import strftime, prepare_string_for_xml as xml
|
||||||
|
from calibre.utils.date import parse_date
|
||||||
|
|
||||||
SONY_METADATA = u'''\
|
SONY_METADATA = u'''\
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
@ -87,7 +88,8 @@ def sony_metadata(oeb):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
try:
|
try:
|
||||||
date = unicode(m.date[0]).split('T')[0]
|
date = parse_date(unicode(m.date[0]),
|
||||||
|
as_utc=False).strftime('%Y-%m-%d')
|
||||||
except:
|
except:
|
||||||
date = strftime('%Y-%m-%d')
|
date = strftime('%Y-%m-%d')
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user