summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/trust.py
diff options
context:
space:
mode:
authorTomas Babej <tomasbabej@gmail.com>2013-10-24 14:24:33 +0200
committerPetr Viktorin <pviktori@redhat.com>2013-10-25 13:51:59 +0200
commitdf5f5c9fab5dd66c50bf202e1ebd19f558e3e0c6 (patch)
treeca19a9e86caaf86a6df8fcd0abc8ac6b63e3fd0a /ipalib/plugins/trust.py
parent81b5ac772f28efc7af250cfa600ef27492528b3a (diff)
downloadfreeipa-df5f5c9fab5dd66c50bf202e1ebd19f558e3e0c6.tar.gz
freeipa-df5f5c9fab5dd66c50bf202e1ebd19f558e3e0c6.tar.xz
freeipa-df5f5c9fab5dd66c50bf202e1ebd19f558e3e0c6.zip
trusts: Fix typo in error message for realm-domain mismatch
Diffstat (limited to 'ipalib/plugins/trust.py')
-rw-r--r--ipalib/plugins/trust.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/trust.py b/ipalib/plugins/trust.py
index 0d651f886..32a938343 100644
--- a/ipalib/plugins/trust.py
+++ b/ipalib/plugins/trust.py
@@ -424,14 +424,14 @@ sides.
)
# If domain name and realm does not match, IPA server is not be able
- # to estabilish trust with Active Directory.
+ # to establish trust with Active Directory.
realm_not_matching_domain = (api.env.domain.upper() != api.env.realm)
if options['trust_type'] == u'ad' and realm_not_matching_domain:
raise errors.ValidationError(
name=_('Realm-domain mismatch'),
- error=_('To estabilish trust with Active Directory, the '
+ error=_('To establish trust with Active Directory, the '
'domain name and the realm name of the IPA server '
'must match')
)