diff --git a/src/log.py b/src/log.py index 82d5c9866..6341fdb01 100644 --- a/src/log.py +++ b/src/log.py @@ -259,11 +259,11 @@ conf.registerGlobalValue(conf.supybot.log, 'timestampFormat', format.""")) class BooleanRequiredFalseOnWindows(registry.Boolean): + """Value cannot be true on Windows""" def set(self, s): registry.Boolean.set(self, s) if self.value and os.name == 'nt': - raise registry.InvalidRegistryValue, \ - 'Value cannot be true on Windows.' + self.error() conf.registerGlobalValue(conf.supybot.log, 'stdout', registry.Boolean(True, """Determines whether the bot will log to