hgext/highlight/__init__.py
changeset 19872 681f7b9213a4
parent 16743 38caf405d010
child 25186 80c5b2666a96
--- a/hgext/highlight/__init__.py	Thu Oct 03 14:50:47 2013 +0200
+++ b/hgext/highlight/__init__.py	Thu Oct 03 14:50:47 2013 +0200
@@ -50,7 +50,7 @@
 
 def generate_css(web, req, tmpl):
     pg_style = web.config('web', 'pygments_style', 'colorful')
-    fmter = highlight.HtmlFormatter(style = pg_style)
+    fmter = highlight.HtmlFormatter(style=pg_style)
     req.respond(common.HTTP_OK, 'text/css')
     return ['/* pygments_style = %s */\n\n' % pg_style,
             fmter.get_style_defs('')]