Skip to content

Commit

Permalink
fix: fork_job=False, from CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
pirtim committed Mar 31, 2017
1 parent fe18b00 commit c1a194a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ def cli_convert(self, args):
elif args.id is not None:
# `calibre-debug -r djvumaker -- convert -i 123 #id(123).pdf` -> tempfile(id(123).djvu)
printsd('in convert by id')
self._postimport(args.id)
self._postimport(args.id, fork_job=False)

# -- calibre filetype plugin mandatory methods --
def run(self, path_to_ebook):
Expand Down
Binary file removed djvumaker_1.1.0.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,4 +400,4 @@ def inner(fun):
return inner

def plugin_dir(plugin_name):
return os.path.join(config_dir, 'plugins', plugin_name)
return os.path.join(config_dir, 'plugins', plugin_name)

0 comments on commit c1a194a

Please sign in to comment.