From c8afb75d53a0fc1a4c8be408b0963076b1925536 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 27 Feb 2008 02:47:32 +0000 Subject: [PATCH] queryset-refactor: Typo fix. Fixed #6670. Thanks, alex. git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7166 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/sql/subqueries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/sql/subqueries.py b/django/db/models/sql/subqueries.py index 57612da6d6..d4874d3d23 100644 --- a/django/db/models/sql/subqueries.py +++ b/django/db/models/sql/subqueries.py @@ -157,7 +157,7 @@ class UpdateQuery(Query): field, model, direct, m2m = self.model._meta.get_field_by_name(name) if not direct or m2m: # Can only update non-relation fields and foreign keys. - raise fieldError('Cannot update model field %r (only non-relations and foreign keys permitted).' % field) + raise FieldError('Cannot update model field %r (only non-relations and foreign keys permitted).' % field) if field.rel and isinstance(val, Model): val = val.pk self.values.append((field.column, val))