From a95e0777ac64cc8edad152f189be5347117785ef Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Jun 20 2016 11:49:32 +0000 Subject: Fix minor typos Reviewed-By: Martin Basti --- diff --git a/ipalib/errors.py b/ipalib/errors.py index 71c12f9..bd2d314 100644 --- a/ipalib/errors.py +++ b/ipalib/errors.py @@ -407,7 +407,7 @@ class ServerNetworkError(PublicError): class JSONError(PublicError): """ - **909** Raised when server recieved a malformed JSON-RPC request. + **909** Raised when server received a malformed JSON-RPC request. """ errno = 909 @@ -475,7 +475,7 @@ class KerberosError(AuthenticationError): class CCacheError(KerberosError): """ - **1101** Raised when sever does not recieve Kerberose credentials. + **1101** Raised when sever does not receive Kerberose credentials. For example: diff --git a/ipapython/dnssec/syncrepl.py b/ipapython/dnssec/syncrepl.py index e6bda08..e197670 100644 --- a/ipapython/dnssec/syncrepl.py +++ b/ipapython/dnssec/syncrepl.py @@ -82,7 +82,7 @@ class SyncReplConsumer(ReconnectLDAPObject, SyncreplConsumer): def syncrepl_present(self, uuids, refreshDeletes=False): # If we have not been given any UUID values, - # then we have recieved all the present controls... + # then we have received all the present controls... if uuids is None: # We only do things if refreshDeletes is false # as the syncrepl extension will call syncrepl_delete instead diff --git a/ipaserver/install/adtrustinstance.py b/ipaserver/install/adtrustinstance.py index 962264b..9447412 100644 --- a/ipaserver/install/adtrustinstance.py +++ b/ipaserver/install/adtrustinstance.py @@ -600,10 +600,10 @@ class ADTRUSTInstance(service.Service): self.print_msg("Add the following service records to your DNS " \ "server for DNS zone %s: " % zone) system_records = IPASystemRecords(api) - adtrust_recors = system_records.get_base_records( + adtrust_records = system_records.get_base_records( [self.fqdn], ["AD trust controller"], include_master_role=False, include_kerberos_realm=False) - for r_name, node in adtrust_recors.items(): + for r_name, node in adtrust_records.items(): for rec in IPASystemRecords.records_list_from_node(r_name, node): self.print_msg(rec) else: diff --git a/ipaserver/plugins/dns.py b/ipaserver/plugins/dns.py index 094f8eb..86da01a 100644 --- a/ipaserver/plugins/dns.py +++ b/ipaserver/plugins/dns.py @@ -4441,7 +4441,7 @@ class dns_update_system_records(Command): Flag( 'dry_run', label=_('Dry run'), - doc=_('Do not update recors only return expected records') + doc=_('Do not update records only return expected records') ) )