mirror of
https://github.com/django/django.git
synced 2025-07-06 10:49:17 +00:00
queryset-refactor: s/udpate/update. :-(
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7049 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f99247cc1b
commit
a4343209db
@ -101,7 +101,7 @@ class Manager(object):
|
|||||||
def values(self, *args, **kwargs):
|
def values(self, *args, **kwargs):
|
||||||
return self.get_query_set().values(*args, **kwargs)
|
return self.get_query_set().values(*args, **kwargs)
|
||||||
|
|
||||||
def udpate(self, *args, **kwargs):
|
def update(self, *args, **kwargs):
|
||||||
return self.get_query_set().updated(*args, **kwargs)
|
return self.get_query_set().updated(*args, **kwargs)
|
||||||
|
|
||||||
def _insert(self, *args, **kwargs):
|
def _insert(self, *args, **kwargs):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user