From db0a4c235a280fb934048db52db6c9706c89df6d Mon Sep 17 00:00:00 2001 From: Adarnof Date: Fri, 18 Sep 2015 03:51:02 +0000 Subject: [PATCH] Fixed reference to renamed variable "ALLIANCE_BLUE_STANDING" -> "BLUE_STANDING" --- celerytask/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/celerytask/tasks.py b/celerytask/tasks.py index bd6c231d..1a875c0d 100755 --- a/celerytask/tasks.py +++ b/celerytask/tasks.py @@ -235,7 +235,7 @@ def run_corp_update(): corp_standings = EveApiManager.get_corp_standings() if corp_standings: for standing_id in EveApiManager.get_corp_standings()['alliance']: - if int(corp_standings['alliance'][standing_id]['standing']) >= settings.ALLIANCE_BLUE_STANDING: + if int(corp_standings['alliance'][standing_id]['standing']) >= settings.BLUE_STANDING: if EveApiManager.check_if_id_is_character(standing_id): pass elif EveApiManager.check_if_id_is_corp(standing_id):