From d665c0b3b92b589d3361463005f64582299d56e6 Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sun, 27 Mar 2011 23:00:36 +0000 Subject: [PATCH] Fixed #15664 - Removed extra parens in commit_on_success example. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15923 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/db/transactions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt index a5bb7470ad4..70b11570e12 100644 --- a/docs/topics/db/transactions.txt +++ b/docs/topics/db/transactions.txt @@ -73,7 +73,7 @@ These functions, described in detail below, can be used in two different ways: from django.db import transaction - @transaction.commit_on_success() + @transaction.commit_on_success def viewfunc(request): # ... # this code executes inside a transaction