diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-10-13 22:52:57 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-10-13 22:53:39 -0400 |
commit | b607c5cc5ab34c007640011f299f358f190f6652 (patch) | |
tree | 9521b134f8ed33dee6752fc4428c727f0b02cbb6 | |
parent | 470576a832b0cbb35a2ebdd565dca793f2c86b00 (diff) | |
download | freeipa-b607c5cc5ab34c007640011f299f358f190f6652.tar.gz freeipa-b607c5cc5ab34c007640011f299f358f190f6652.tar.xz freeipa-b607c5cc5ab34c007640011f299f358f190f6652.zip |
Fix typo in invalid PTR record error message
https://fedorahosted.org/freeipa/ticket/1982
-rw-r--r-- | ipalib/plugins/dns.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py index 09642089e..f6bbb3c4f 100644 --- a/ipalib/plugins/dns.py +++ b/ipalib/plugins/dns.py @@ -648,7 +648,7 @@ class dnsrecord(LDAPObject): for ptr in options['ptrrecord']: if not ptr.endswith('.'): raise errors.ValidationError(name='ptr-rec', - error=unicode(_('PTR record \'%s\' is not fully qualified (check traling \'.\')') % ptr)) + error=unicode(_('PTR record \'%s\' is not fully qualified (check trailing \'.\')') % ptr)) return dn |