Author: Alex
Date: 2010-12-08 12:37:24 -0600 (Wed, 08 Dec 2010)
New Revision: 14860

Modified:
   django/branches/releases/1.2.X/django/db/utils.py
Log:
[1.2.X] Fixed the world's ugliest syntax (that's not an actual error) that 
snuck in with [14858]. Backport of [14859].

Modified: django/branches/releases/1.2.X/django/db/utils.py
===================================================================
--- django/branches/releases/1.2.X/django/db/utils.py   2010-12-08 18:37:00 UTC 
(rev 14859)
+++ django/branches/releases/1.2.X/django/db/utils.py   2010-12-08 18:37:24 UTC 
(rev 14860)
@@ -131,8 +131,7 @@
                     # If the router doesn't have a method, skip to the next 
one.
                     pass
                 else:
-                    chosen_db = method(model, **hints
-                    )
+                    chosen_db = method(model, **hints)
                     if chosen_db:
                         return chosen_db
             try:

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to