mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 20:43:43 +02:00
...
This commit is contained in:
parent
c5a5751dda
commit
489fa23f4c
1 changed files with 4 additions and 2 deletions
|
|
@ -171,7 +171,7 @@ def create_uninstaller(self):
|
|||
self.task_failed('Creating uninstaller failed')
|
||||
|
||||
|
||||
def setup_completion(self):
|
||||
def setup_completion(self): # {{{
|
||||
try:
|
||||
self.info('Setting up bash completion...')
|
||||
from calibre.ebooks.metadata.cli import option_parser as metaop, filetypes as meta_filetypes
|
||||
|
|
@ -287,8 +287,9 @@ def setup_completion(self):
|
|||
if self.opts.fatal_errors:
|
||||
raise
|
||||
self.task_failed('Setting up completion failed')
|
||||
# }}}
|
||||
|
||||
def install_man_pages(self):
|
||||
def install_man_pages(self): # {{{
|
||||
try:
|
||||
from calibre.utils.help2man import create_man_page
|
||||
if isfreebsd:
|
||||
|
|
@ -318,6 +319,7 @@ def install_man_pages(self):
|
|||
if self.opts.fatal_errors:
|
||||
raise
|
||||
self.task_failed('Installing MAN pages failed')
|
||||
# }}}
|
||||
|
||||
def setup_desktop_integration(self):
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue