From d6e3f13513def0a7cdb902a9565084b9e6e14949 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 29 Aug 2004 04:32:07 +0000 Subject: [PATCH] Elucidating comment. --- src/world.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/world.py b/src/world.py index a7cd9f5fb..9ef5a1e55 100644 --- a/src/world.py +++ b/src/world.py @@ -160,6 +160,8 @@ def startDying(): def finished(): log.info('Shutdown complete.') +# These are in order; don't reorder them for cosmetic purposes. The order +# in which they're registered is the reverse order in which they will run. atexit.register(finished) atexit.register(upkeep) atexit.register(makeIrcsDie)