Commit 728770a5 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #15702 -- Corrected problem in test suite introduced by Python 2.4...

Fixed #15702 -- Corrected problem in test suite introduced by Python 2.4 changes from r15927. Thanks to mk for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 3bad2ca4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ class Transaction(object):
        @wraps(func)
        def inner(*args, **kwargs):
            with self:
                func(*args, **kwargs)
                return func(*args, **kwargs)
        return inner

def _transaction_func(entering, exiting, using):