From 62d3987e349a5b5b7f24dba468298ea795e84fa4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Aug 2008 20:52:03 -0700 Subject: [PATCH] Fix #759 (.txt files not properly holding metadata upon transfer.) --- src/calibre/devices/prs505/books.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/prs505/books.py b/src/calibre/devices/prs505/books.py index c97d430d4b..bcae4722ea 100644 --- a/src/calibre/devices/prs505/books.py +++ b/src/calibre/devices/prs505/books.py @@ -13,7 +13,7 @@ from calibre.devices.interface import BookList as _BookList from calibre.devices import strftime as _strftime from calibre.devices import strptime -strftime = functools.partial(_strftime, zone=time.localtime) +strftime = functools.partial(_strftime, zone=time.gmtime) MIME_MAP = { "lrf" : "application/x-sony-bbeb",