From f3203615aeb661ccce5803fd8559e2fa5eb57099 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 9 Mar 2013 09:34:23 +0530 Subject: [PATCH] Fix a bug in the zsh completion when converting for ebook-conver with PDF output --- src/calibre/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/linux.py b/src/calibre/linux.py index 7606c11f16..5f8ae31ce5 100644 --- a/src/calibre/linux.py +++ b/src/calibre/linux.py @@ -166,7 +166,7 @@ class ZshCompleter(object): # {{{ exclude = u"'(- *)'" h = opt.help or '' h = h.replace('"', "'").replace('[', '(').replace( - ']', ')').replace('\n', ' ').replace(':', '\\:') + ']', ')').replace('\n', ' ').replace(':', '\\:').replace('`', "'") h = h.replace('%default', type(u'')(opt.default)) arg = '' if opt.takes_value():