Browse Source

pyi2phosts/lib/validation.py: update error message

pull/1/head
Hidden Z 13 years ago
parent
commit
6fce92307a
  1. 2
      pyi2phosts/lib/validation.py

2
pyi2phosts/lib/validation.py

@ -108,7 +108,7 @@ def validate_b64hash(data, check_uniq=True): @@ -108,7 +108,7 @@ def validate_b64hash(data, check_uniq=True):
# Avoid adding non-unique hashes
qs = i2phost.objects.filter(b64hash=data)
if qs.exists():
raise ValidationError(_('Base64 hash must be unique'))
raise ValidationError(_('Some host already have the same Base64 hash'))
return data

Loading…
Cancel
Save