mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Removed check for south availability.
This commit is contained in:
parent
35dad76d02
commit
5371d06e3a
1 changed files with 2 additions and 6 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue