Import python3 compatible object.

This commit is contained in:
Ahmed Charles 2015-10-23 02:26:37 +00:00 committed by Griatch
parent 4f07da29c2
commit 11b61fe335
43 changed files with 43 additions and 0 deletions

View file

@ -5,6 +5,7 @@ added to all game objects. You access it through the property
`scripts` on the game object.
"""
from builtins import object
from evennia.scripts.models import ScriptDB
from evennia.utils import create

View file

@ -54,6 +54,7 @@ a custom handler one can make a custom `AT_STARTSTOP_MODULE` entry to
call the handler's `save()` and `restore()` methods when the server reboots.
"""
from builtins import object
from twisted.internet.defer import inlineCallbacks
from django.core.exceptions import ObjectDoesNotExist
from evennia.scripts.scripts import ExtendedLoopingCall