From d15e7e8d7fd2e6f3fc2bb8f28fef8eba7ecce190 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 12 Jan 2005 21:07:42 +0000 Subject: [PATCH] Removed an assert that isn't too important. --- src/world.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/world.py b/src/world.py index cf4f40d2c..3548ee6c7 100644 --- a/src/world.py +++ b/src/world.py @@ -54,7 +54,8 @@ startedAt = time.time() # Just in case it doesn't get set later. starting = False mainThread = threading.currentThread() -assert 'MainThread' in repr(mainThread) +# ??? Should we do this? What do we gain? +# assert 'MainThread' in repr(mainThread) def isMainThread(): return mainThread is threading.currentThread()