From e12f0a0e90a484e929e7fb48f80f7ae9db8d2bd2 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 1 Jul 2010 13:12:36 +0100 Subject: [PATCH] Fix blacklist defines --- hr/app_defines.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hr/app_defines.py b/hr/app_defines.py index 53527d0..23ea5a3 100644 --- a/hr/app_defines.py +++ b/hr/app_defines.py @@ -53,9 +53,9 @@ BLACKLIST_TYPE_ALLIANCE = 3 BLACKLIST_TYPE_EMAIL = 4 BLACKLIST_TYPE_CHOICES = ( - BLACKLIST_TYPE_REDDIT, 'Reddit Account', - BLACKLIST_TYPE_CHARACTER, 'Character', - BLACKLIST_TYPE_CORPORATION, 'Corporation', - BLACKLIST_TYPE_ALLIANCE, 'Alliance', - BLACKLIST_TYPE_EMAIL, 'Email Address', + (BLACKLIST_TYPE_REDDIT, 'Reddit Account'), + (BLACKLIST_TYPE_CHARACTER, 'Character'), + (BLACKLIST_TYPE_CORPORATION, 'Corporation'), + (BLACKLIST_TYPE_ALLIANCE, 'Alliance'), + (BLACKLIST_TYPE_EMAIL, 'Email Address'), )