From 5acf203db2e9562dbe4073bf85d5043ef3121ea9 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 26 Oct 2015 18:38:30 -0400 Subject: Fixed #25596 -- Fixed regression in password change view with custom user model. The reverse() added in 50aa1a790ca66c2a93e0a52e00c53375b269ff49 crashed on a custom user model. --- tests/auth_tests/models/uuid_pk.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'tests/auth_tests/models') diff --git a/tests/auth_tests/models/uuid_pk.py b/tests/auth_tests/models/uuid_pk.py index 44ec4410aa..7c65226493 100644 --- a/tests/auth_tests/models/uuid_pk.py +++ b/tests/auth_tests/models/uuid_pk.py @@ -8,6 +8,3 @@ with RemoveGroupsAndPermissions(): class UUIDUser(AbstractUser): """A user with a UUID as primary key""" id = models.UUIDField(default=uuid.uuid4, primary_key=True) - - class Meta: - app_label = 'auth' -- cgit v1.3