Fix #2810 (/home/kovid/work/... path hard coded into binary distribution)

This commit is contained in:
Kovid Goyal 2009-08-03 22:36:01 -06:00
parent 4ba8cb73d0
commit be192a155a
3 changed files with 6 additions and 3 deletions

View File

@ -289,6 +289,7 @@ def available_input_formats():
if not is_disabled(plugin):
for format in plugin.file_types:
formats.add(format)
formats.add('zip'), formats.add('rar')
return formats
def output_format_plugins():

View File

@ -239,6 +239,8 @@ class PRS500(DeviceConfig, DevicePlugin):
Also initialize the device.
See the source code for the sequence of initialization commands.
"""
if not hasattr(self, 'key'):
self.key = '-1\0\0\0\0\0\0'
self.device = get_device_by_id(self.VENDOR_ID, self.PRODUCT_ID)
if not self.device:
raise DeviceError()

View File

@ -812,9 +812,9 @@ class DeviceGUI(object):
bad = '\n'.join('%s'%(i,) for i in bad)
d = warning_dialog(self, _('No suitable formats'),
_('Could not upload the following books to the device, '
'as no suitable formats were found. Try changing the output '
'format in the upper right corner next to the red heart and '
're-converting.'), bad)
'as no suitable formats were found. Convert the book(s) to a '
'format supported by your device first.'
), bad)
d.exec_()
def upload_booklists(self):