From ecea0fb1739d4a85a235cee6013747742d9e9acb Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 2 Jul 2012 17:17:16 -0700 Subject: Use new-style string formatting for the HTML template --- Tools/scripts/pycolorize.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tools/scripts/pycolorize.py b/Tools/scripts/pycolorize.py index 3a9c95e..7a177b9 100755 --- a/Tools/scripts/pycolorize.py +++ b/Tools/scripts/pycolorize.py @@ -79,13 +79,13 @@ default_html = '''\ - %s + {title} -%s +{body} ''' @@ -95,7 +95,7 @@ def build_page(source, title='python', css=default_css, html=default_html): css_str = '\n'.join(['%s %s' % item for item in css.items()]) result = colorize(source) title = cgi.escape(title) - return html % (title, css_str, result) + return html.format(title=title, css=css_str, body=result) if __name__ == '__main__': -- cgit v0.12