From f2668c38517cce6948873187d686d86afc7297e9 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 8 Jan 2011 00:45:42 -0600 Subject: [PATCH] mention how Module.save() and Module.shutdown() are related --- Module.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Module.py b/Module.py index 1168070..4c3cdda 100644 --- a/Module.py +++ b/Module.py @@ -87,7 +87,8 @@ class Module(object): def shutdown(self): """Do pre-deletion type cleanup. - Implement this to close databases, write to disk, etc. + Implement this to close databases, write to disk, etc. Note that DrBotIRC + will call save() before this, so implement appropriately. """ def remove_metaoptions(self, list):