magic-removal: Fixed #1276 -- Fixed typo in auth.models. Thanks, Esaj

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2130 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-27 15:41:26 +00:00
parent 9308377fda
commit bacdf2ddad
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class User(models.Model):
AND ug.%s = %%s""" % (
backend.quote_name('package'), backend.quote_name('codename'),
backend.quote_name('auth_permission'), backend.quote_name('auth_group_permissions'),
backend.quote_name('auth_users_groups'), backend.quote_name('id'),
backend.quote_name('auth_user_groups'), backend.quote_name('id'),
backend.quote_name('permission_id'), backend.quote_name('group_id'),
backend.quote_name('group_id'), backend.quote_name('user_id'))
cursor.execute(sql, [self.id])