From 72307a6eee51ae65e0cbd8c6d746a21e526b5cac Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 16 Jun 2006 19:35:57 +0000 Subject: [PATCH] Fixed typo in docstring in db/transaction.py git-svn-id: http://code.djangoproject.com/svn/django/trunk@3135 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/transaction.py b/django/db/transaction.py index 60a743c42a..4a0658e1c3 100644 --- a/django/db/transaction.py +++ b/django/db/transaction.py @@ -114,7 +114,7 @@ def is_managed(): def managed(flag=True): """ Puts the transaction manager into a manual state: managed transactions have - to be committed explicitely by the user. If you switch off transaction + to be committed explicitly by the user. If you switch off transaction management and there is a pending commit/rollback, the data will be commited. """