Author: jezdez
Date: 2010-01-05 18:55:54 -0600 (Tue, 05 Jan 2010)
New Revision: 12110

Modified:
   django/trunk/django/db/transaction.py
Log:
Fixed typo introduced in r11952.

Modified: django/trunk/django/db/transaction.py
===================================================================
--- django/trunk/django/db/transaction.py       2010-01-05 23:51:07 UTC (rev 
12109)
+++ django/trunk/django/db/transaction.py       2010-01-06 00:55:54 UTC (rev 
12110)
@@ -329,7 +329,7 @@
 
         return wraps(func)(_commit_manually)
     if func_or_using is None:
-        func_or_using = DEFALUT_DB_ALIAS
+        func_or_using = DEFAULT_DB_ALIAS
     if callable(func_or_using):
         return inner_commit_manually(func_or_using, DEFAULT_DB_ALIAS)
     return lambda func: inner_commit_manually(func, func_or_using)

-- 
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