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

Modified:
   django/trunk/django/db/utils.py
Log:
Fixed the world's ugliest syntax (that's not an actual error) that snuck in 
with [14857].

Modified: django/trunk/django/db/utils.py
===================================================================
--- django/trunk/django/db/utils.py     2010-12-08 18:32:20 UTC (rev 14858)
+++ django/trunk/django/db/utils.py     2010-12-08 18:37:00 UTC (rev 14859)
@@ -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