Commit 7e46b170 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #15297 -- Corrected an attribute naming regressoin from fixing #9964....

Fixed #15297 -- Corrected an attribute naming regressoin from fixing #9964. Thanks to leonov for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15527 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 337b6786
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@ logger = getLogger('django.db.backends')


class CursorWrapper(object):
    def __init__(self, cursor, connection):
    def __init__(self, cursor, db):
        self.cursor = cursor
        self.connection = connection
        self.db = db

    def __getattr__(self, attr):
        if self.connection.is_managed():
            self.connection.set_dirty()
        if self.db.is_managed():
            self.db.set_dirty()
        if attr in self.__dict__:
            return self.__dict__[attr]
        else:
@@ -35,8 +35,8 @@ class CursorDebugWrapper(CursorWrapper):
        finally:
            stop = time()
            duration = stop - start
            sql = self.connection.ops.last_executed_query(self.cursor, sql, params)
            self.connection.queries.append({
            sql = self.db.ops.last_executed_query(self.cursor, sql, params)
            self.db.queries.append({
                'sql': sql,
                'time': "%.3f" % duration,
            })
@@ -51,7 +51,7 @@ class CursorDebugWrapper(CursorWrapper):
        finally:
            stop = time()
            duration = stop - start
            self.connection.queries.append({
            self.db.queries.append({
                'sql': '%s times: %s' % (len(param_list), sql),
                'time': "%.3f" % duration,
            })