Fixed the world's ugliest syntax (that's not an actual error) that snuck in with [14857].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14859 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
2a46323124
commit
a4898dc50b
|
@ -131,8 +131,7 @@ class ConnectionRouter(object):
|
||||||
# If the router doesn't have a method, skip to the next one.
|
# If the router doesn't have a method, skip to the next one.
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
chosen_db = method(model, **hints
|
chosen_db = method(model, **hints)
|
||||||
)
|
|
||||||
if chosen_db:
|
if chosen_db:
|
||||||
return chosen_db
|
return chosen_db
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue