From df5f5c9fab5dd66c50bf202e1ebd19f558e3e0c6 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 24 Oct 2013 14:24:33 +0200 Subject: trusts: Fix typo in error message for realm-domain mismatch --- ipalib/plugins/trust.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/plugins') diff --git a/ipalib/plugins/trust.py b/ipalib/plugins/trust.py index 0d651f88..32a93834 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') ) -- cgit