Sony T1: Updated Periodical Support

This commit is contained in:
Kolenka 2011-10-15 09:50:59 -07:00
parent 2a4c9dadc9
commit 0329eb833e

View File

@ -556,8 +556,6 @@ class PRST1(USBMS):
except: except:
pass pass
description = ''
cursor = connection.cursor() cursor = connection.cursor()
query = ''' query = '''
@ -568,7 +566,7 @@ class PRST1(USBMS):
publication_date = ? publication_date = ?
WHERE _id = ? WHERE _id = ?
''' '''
t = (name, description, pubdate, book.bookId,) t = (name, None, pubdate, book.bookId,)
cursor.execute(query, t) cursor.execute(query, t)
connection.commit() connection.commit()