From 207f2df46391de79231da7068e5f5ef0a80f1324 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 8 Jul 2011 09:55:07 -0600 Subject: [PATCH] Fix #807527 (Space missing in string) --- src/calibre/gui2/preferences/template_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/preferences/template_functions.py b/src/calibre/gui2/preferences/template_functions.py index 7f310dace0..e2c880bcc9 100644 --- a/src/calibre/gui2/preferences/template_functions.py +++ b/src/calibre/gui2/preferences/template_functions.py @@ -155,7 +155,7 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form): return if self.argument_count.value() == 0: box = warning_dialog(self.gui, _('Template functions'), - _('Argument count should be -1 or greater than zero.' + _('Argument count should be -1 or greater than zero. ' 'Setting it to zero means that this function cannot ' 'be used in single function mode.'), det_msg = '', show=False)