From 0329eb833e56c1640dee7d36fc072ca5414eff5d Mon Sep 17 00:00:00 2001 From: Kolenka Date: Sat, 15 Oct 2011 09:50:59 -0700 Subject: [PATCH] Sony T1: Updated Periodical Support --- src/calibre/devices/prst1/driver.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/calibre/devices/prst1/driver.py b/src/calibre/devices/prst1/driver.py index 9ec0ad7094..12d6b3ddef 100644 --- a/src/calibre/devices/prst1/driver.py +++ b/src/calibre/devices/prst1/driver.py @@ -556,8 +556,6 @@ class PRST1(USBMS): except: pass - description = '' - cursor = connection.cursor() query = ''' @@ -568,7 +566,7 @@ class PRST1(USBMS): publication_date = ? WHERE _id = ? ''' - t = (name, description, pubdate, book.bookId,) + t = (name, None, pubdate, book.bookId,) cursor.execute(query, t) connection.commit()