From 0091334db198918ee144df6f4fc7a3c456a5561d Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 3 Sep 2012 16:17:14 -0400 Subject: command:html: oops, use default arguments for 'notify' and 'auth'. --- libbe/command/html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbe/command') diff --git a/libbe/command/html.py b/libbe/command/html.py index b7fcd74..5325183 100644 --- a/libbe/command/html.py +++ b/libbe/command/html.py @@ -830,8 +830,8 @@ class HTML (libbe.util.wsgi.ServerCommand): return 0 # provide defaults for the dropped options params['read-only'] = True - params['notify'] = False - params['auth'] = False + params['notify'] = None + params['auth'] = None return super(HTML, self)._run(**params) def _get_app(self, logger, storage, index_file='', generation_time=None, -- cgit