I\'m trying to install the Evennia Python MUD and when I get to the python manage.py syncdb command I get the below message... any ideas on why?
Traceback (m
Remove the .pyc files using the command
find . -name "*.pyc" -exec rm -f {} \;
and test again.