Change USBMS default CAN_SET_METADATA to False

This commit is contained in:
Kovid Goyal 2010-05-20 10:33:10 -06:00
parent 036c2fe68c
commit 00f4a0f4eb
2 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ class PRS505(USBMS):
FORMATS = ['epub', 'lrf', 'lrx', 'rtf', 'pdf', 'txt']
CAN_SET_METADATA = True
VENDOR_ID = [0x054c] #: SONY Vendor Id
PRODUCT_ID = [0x031e]

View File

@ -37,7 +37,7 @@ class USBMS(CLI, Device):
book_class = Book
FORMATS = []
CAN_SET_METADATA = True
CAN_SET_METADATA = False
METADATA_CACHE = 'metadata.calibre'
def get_device_information(self, end_session=True):