From f521b8129e16647d5b515028938192e0588af824 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 20 Apr 2014 16:18:15 +0200 Subject: [PATCH] Removed some debug output. --- src/objects/models.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/objects/models.py b/src/objects/models.py index e97bb7f08..2ef273c86 100644 --- a/src/objects/models.py +++ b/src/objects/models.py @@ -654,10 +654,8 @@ class ObjectDB(TypedObject): object as a destination. """ for out_exit in [exi for exi in ObjectDB.objects.get_contents(self) if exi.db_destination]: - print "objects.clear_exits (out):", out_exit out_exit.delete() for in_exit in ObjectDB.objects.filter(db_destination=self): - print "objects.clear_exits (in):", in_exit in_exit.delete() def clear_contents(self): @@ -679,7 +677,6 @@ class ObjectDB(TypedObject): default_home = None for obj in objs: - print "object.clear_contents:", obj home = obj.home # Obviously, we can't send it back to here. if not home or (home and home.dbid == _GA(self, "dbid")):