This commit is contained in:
Kovid Goyal 2013-02-19 14:53:08 +05:30
parent 5b693f33e6
commit f7a8feb0f8
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ class ILIAD(USBMS):
name = 'IRex Iliad Device Interface' name = 'IRex Iliad Device Interface'
description = _('Communicate with the IRex Iliad eBook reader.') description = _('Communicate with the IRex Iliad eBook reader.')
author = _('John Schember') author = 'John Schember'
supported_platforms = ['windows', 'linux'] supported_platforms = ['windows', 'linux']
# Ordered list of supported formats # Ordered list of supported formats

View File

@ -15,7 +15,7 @@ class IREXDR1000(USBMS):
name = 'IRex Digital Reader 1000 Device Interface' name = 'IRex Digital Reader 1000 Device Interface'
description = _('Communicate with the IRex Digital Reader 1000 eBook ' \ description = _('Communicate with the IRex Digital Reader 1000 eBook ' \
'reader.') 'reader.')
author = _('John Schember') author = 'John Schember'
supported_platforms = ['windows', 'osx', 'linux'] supported_platforms = ['windows', 'osx', 'linux']
# Ordered list of supported formats # Ordered list of supported formats

View File

@ -40,7 +40,7 @@ class USBMS(CLI, Device):
''' '''
description = _('Communicate with an eBook reader.') description = _('Communicate with an eBook reader.')
author = _('John Schember') author = 'John Schember'
supported_platforms = ['windows', 'osx', 'linux'] supported_platforms = ['windows', 'osx', 'linux']
# Store type instances of BookList and Book. We must do this because # Store type instances of BookList and Book. We must do this because