From 5371d06e3a76c6ecbf97ac68548534a81cfdcbf0 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 17 Sep 2014 12:08:11 +0200 Subject: [PATCH] Removed check for south availability. --- src/utils/utils.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/utils/utils.py b/src/utils/utils.py index 287bc747d1..7ea45d35f1 100644 --- a/src/utils/utils.py +++ b/src/utils/utils.py @@ -668,12 +668,8 @@ def check_evennia_dependencies(): errstring += "\n ERROR: Django does not seem to be installed." no_error = False # South - try: - if 'south' in settings.INSTALLED_APPS: - errstring += "\n ERROR: 'south' found in settings.INSTALLED_APPS. South is no longer used. If this was added manually, remove." - no_error = False - except ImportError: - errstring += "\n ERROR: South (django-south) does not seem to be installed." + if 'south' in settings.INSTALLED_APPS: + errstring += "\n ERROR: 'south' found in settings.INSTALLED_APPS. South is no longer used. If this was added manually, remove it." no_error = False # IRC support if settings.IRC_ENABLED: