From dd51fed7de49c3537dd4a387d01eaebba0ba823c Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Sat, 2 Mar 2013 11:22:34 -0500 Subject: [PATCH] [config] Fix problem where configuration of just the modules or database would not save --- willie/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/willie/config.py b/willie/config.py index bce5f63df4..fc606e5d41 100644 --- a/willie/config.py +++ b/willie/config.py @@ -261,6 +261,7 @@ def _core(self): def _db(self): db.configure(self) + self.save() def _modules(self): home = os.getcwd() @@ -279,6 +280,7 @@ def _modules(self): else: if hasattr(module, 'configure'): module.configure(self) + self.save() def wizard(section, config=None):