Fixed incorrect usage of its in query.py docstring
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16024 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
fda7ac3490
commit
d546179c71
|
@ -712,7 +712,7 @@ class QuerySet(object):
|
||||||
|
|
||||||
def using(self, alias):
|
def using(self, alias):
|
||||||
"""
|
"""
|
||||||
Selects which database this QuerySet should excecute it's query against.
|
Selects which database this QuerySet should excecute its query against.
|
||||||
"""
|
"""
|
||||||
clone = self._clone()
|
clone = self._clone()
|
||||||
clone._db = alias
|
clone._db = alias
|
||||||
|
|
Loading…
Reference in New Issue