Fix typo in invalid PTR record error message

https://fedorahosted.org/freeipa/ticket/1982
This commit is contained in:
Rob Crittenden 2011-10-13 22:52:57 -04:00
parent 470576a832
commit b607c5cc5a

View File

@ -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