﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11255	Missing parameter in cursor method (BaseDatabaseWrapper)	Maximiliano Robaina	nobody	"In db/backends/__init__.py  the cursor method of BaseDatabaseWrapper class, has a missed parameter (line 81).

Original code (django 1.1 beta1 - trunk)
{{{
def cursor(self):
        from django.conf import settings
        cursor = self._cursor()  #<--here
        if settings.DEBUG:
            return self.make_debug_cursor(cursor)
        return cursor
}}}


In line 81: 
  cursor = self._cursor()

Should be:
  cursor = self._cursor(setting)

When I run syncdb, a missing parameter error is raised.

"		closed	Uncategorized	1.1-beta		invalid			Unreviewed	0	0	0	0	0	0
