From: W. Trevor King Date: Mon, 3 Sep 2012 20:14:39 +0000 (-0400) Subject: command:html: fix super(HTML. self) -> super(HTML, self). X-Git-Tag: 1.1.0~84 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f9f8cc7ec1b3cf214a70f3ea1a89af018b8b62e1;p=be.git command:html: fix super(HTML. self) -> super(HTML, self). --- diff --git a/libbe/command/html.py b/libbe/command/html.py index 63f931d..b7fcd74 100644 --- a/libbe/command/html.py +++ b/libbe/command/html.py @@ -832,7 +832,7 @@ class HTML (libbe.util.wsgi.ServerCommand): params['read-only'] = True params['notify'] = False params['auth'] = False - return super(HTML. self)._run(**params) + return super(HTML, self)._run(**params) def _get_app(self, logger, storage, index_file='', generation_time=None, **kwargs):