summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-10-13 22:52:57 -0400
committerRob Crittenden <rcritten@redhat.com>2011-10-13 22:52:57 -0400
commite365bc5379e38e2deb0e7ce88033e9e263cbd671 (patch)
tree1c072f27c4591a518d942a23906bf7c2c60bfb65
parent3506dc8ed4e59f08c1094266482420744630f757 (diff)
downloadfreeipa-e365bc5379e38e2deb0e7ce88033e9e263cbd671.tar.gz
freeipa-e365bc5379e38e2deb0e7ce88033e9e263cbd671.tar.xz
freeipa-e365bc5379e38e2deb0e7ce88033e9e263cbd671.zip
Fix typo in invalid PTR record error message
https://fedorahosted.org/freeipa/ticket/1982
-rw-r--r--ipalib/plugins/dns.py2
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