A first test using PickledObjectField and a rewritten dbserialize module to store Attributes. No migrations set up yet.

This commit is contained in:
Griatch 2013-04-13 15:15:02 +02:00
parent 4d5cd5352a
commit 75341ade6f
7 changed files with 678 additions and 140 deletions

View file

@ -156,7 +156,7 @@ try:
test = ObjectDB.objects.get(id=1)
except ObjectDB.DoesNotExist:
pass # this is fine at this point
except DatabaseError:
except DatabaseError,e:
print """
Your database does not seem to be set up correctly.
@ -172,6 +172,7 @@ except DatabaseError:
When you have a database set up, rerun evennia.py.
"""
print e
sys.exit()
# Add this to the environmental variable for the 'twistd' command.