command:html: fix super(HTML. self) -> super(HTML, self).
authorW. Trevor King <wking@tremily.us>
Mon, 3 Sep 2012 20:14:39 +0000 (16:14 -0400)
committerW. Trevor King <wking@tremily.us>
Mon, 3 Sep 2012 20:14:39 +0000 (16:14 -0400)
libbe/command/html.py

index 63f931df59a310e74f5c0ebac981f5596a03abaa..b7fcd74672d5c41b8dffe0f289cc6b237a347bb1 100644 (file)
@@ -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):