Skip to content

Commit

Permalink
forget to delete return values
Browse files Browse the repository at this point in the history
  • Loading branch information
xxyzz committed Nov 19, 2020
1 parent 3824232 commit 6a8927b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Install calibre **5+** and jhowell's [KFX Input](https://www.mobileread.com/foru

Right click a **MOBI**, **AZW3** or **KFX** format book then click the plugin menu, it will start generating Word Wise file in a few minutes that depends on the book size and your computer speed.

If your Kindle device is connected, it will send the book(if your device doesn't have it) and the Word Wise file to your device. Make sure the book has only one supported format.
If your Kindle device is connected, it will send the book(if your device doesn't have it) and the Word Wise file to your device. Make sure the book has **only one** supported format.

## License

Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class WordDumbDumb(InterfaceActionBase):
description = 'Create Kindle Word Wise file.'
supported_platforms = ['linux', 'osx', 'windows']
author = 'xxyzz'
version = (1, 5, 0)
version = (1, 5, 1)
minimum_calibre_version = (5, 0, 0) # Python3
actual_plugin = 'calibre_plugins.worddumb.ui:WordDumb'

Expand Down
2 changes: 1 addition & 1 deletion database.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def create_lang_layer(asin, book_path):
lang_layer_path.name + '-journal')
if lang_layer_path.is_file():
if not ll_journal.is_file():
return None, None, lang_layer_path
return None
else: # last time failed
lang_layer_path.unlink()
ll_journal.unlink()
Expand Down
2 changes: 2 additions & 0 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

- https://wiki.mobileread.com/wiki/E-book_formats

- https://www.mobileread.com/forums/showthread.php?t=291290

## Debug

```
Expand Down

0 comments on commit 6a8927b

Please sign in to comment.