From 478f9b93905aa876045ec8ef0c8d5659ddf985d0 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Thu, 21 Dec 2017 15:20:20 -0500 Subject: [PATCH] Fix typo Thanks @mmolitor87 --- allianceauth/authentication/migrations/0015_user_profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/authentication/migrations/0015_user_profiles.py b/allianceauth/authentication/migrations/0015_user_profiles.py index 06e7422f..6eb25cb8 100644 --- a/allianceauth/authentication/migrations/0015_user_profiles.py +++ b/allianceauth/authentication/migrations/0015_user_profiles.py @@ -111,7 +111,7 @@ def populate_ownerships(apps, schema_editor): for t in ts: if t.refresh_token: # find newest refreshable token and use it as basis for CharacterOwnership - CharacterOwnership.objecs.create_by_token(t) + CharacterOwnership.objects.create_by_token(t) break