From a3ad787308e749cb769156f95ea351e03b3d1526 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Mon, 4 Jan 2010 01:07:09 +0000 Subject: [PATCH] [soc2009/model-validation] Typo. Thanks Alex Gaynor git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/model-validation@12075 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/exceptions.py b/django/core/exceptions.py index 9cdfd22026..fee7db4778 100644 --- a/django/core/exceptions.py +++ b/django/core/exceptions.py @@ -67,7 +67,7 @@ class BaseValidationError(Exception): class ValidationError(BaseValidationError): pass -class UnresolvableValidationError(BaseValidationError): +class UnresolvableValidationError(BaseValidationError): """Validation error that cannot be resolved by the user.""" pass