This commit is contained in:
Kovid Goyal 2014-01-10 16:28:57 +05:30
parent 3a1fecc7a1
commit 05a536ed28

View File

@ -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 <html> element, like this <html xmlns="{1}">').format(
(_('incorrect namespace %s') % namespace) if namespace else _('no namespace'),
XHTML_NS))