mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-23 03:45:59 +01:00
...
This commit is contained in:
parent
8030cff498
commit
0ebf1fa64c
2 changed files with 5 additions and 16 deletions
|
|
@ -3459,17 +3459,17 @@ def run(self, path_to_output, opts, db, notification=DummyReporter()):
|
|||
|
||||
if opts.connected_device['name']:
|
||||
if opts.connected_device['serial']:
|
||||
build_log.append(" connected_device: '%s' #%s%s " % \
|
||||
build_log.append(u" connected_device: '%s' #%s%s " % \
|
||||
(opts.connected_device['name'],
|
||||
opts.connected_device['serial'][0:4],
|
||||
'x' * (len(opts.connected_device['serial']) - 4)))
|
||||
build_log.append(" save_template: '%s'" % opts.connected_device['save_template'])
|
||||
build_log.append(u" save_template: '%s'" % opts.connected_device['save_template'])
|
||||
else:
|
||||
build_log.append(" connected_device: '%s'" % opts.connected_device['name'])
|
||||
build_log.append(u" connected_device: '%s'" % opts.connected_device['name'])
|
||||
for storage in opts.connected_device['storage']:
|
||||
if storage:
|
||||
build_log.append(" mount point: %s" % storage)
|
||||
build_log.append(" save_template: '%s'" % opts.connected_device['save_template'])
|
||||
build_log.append(u" mount point: %s" % storage)
|
||||
build_log.append(u" save_template: '%s'" % opts.connected_device['save_template'])
|
||||
|
||||
opts_dict = vars(opts)
|
||||
if opts_dict['ids']:
|
||||
|
|
|
|||
11
todo
11
todo
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
* Refactor web.fetch.simple to use per connection timeouts via the timeout kwarg for mechanize.open
|
||||
|
||||
* Testing framework
|
||||
|
||||
|
||||
* Add a languages column to books. Best implementation is comma separated IANA codes
|
||||
* Add a hash column to the formats table (used for stanza identifier)
|
||||
|
||||
* Fix blockquote handling in sphinx templates
|
||||
* Fix ebook-viewer going to links
|
||||
Loading…
Reference in a new issue