From 05a536ed28b4bf6ba2c0c1b306105c764d1510c4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 10 Jan 2014 16:28:57 +0530 Subject: [PATCH] ... --- src/calibre/ebooks/oeb/polish/check/parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/oeb/polish/check/parsing.py b/src/calibre/ebooks/oeb/polish/check/parsing.py index aadb61a22c..525d3c0f1e 100644 --- a/src/calibre/ebooks/oeb/polish/check/parsing.py +++ b/src/calibre/ebooks/oeb/polish/check/parsing.py @@ -87,7 +87,7 @@ class BadNamespace(BaseError): def __init__(self, name, namespace): BaseError.__init__(self, _('Invalid or missing namespace'), name) self.HELP = prepare_string_for_xml(_( - 'This file has {0}. Its namespace must be {1}. Se the namespace by defining the xmlns' + 'This file has {0}. Its namespace must be {1}. Set the namespace by defining the xmlns' ' attribute on the element, like this ').format( (_('incorrect namespace %s') % namespace) if namespace else _('no namespace'), XHTML_NS))