diff options
author | Raymond Hettinger <python@rcn.com> | 2012-07-01 00:10:25 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2012-07-01 00:10:25 (GMT) |
commit | 410afbc5d8d11624bdb71650c4c79ed54318dd00 (patch) | |
tree | 10f589240294d49d1e0b4254eb1feb133795431f /Tools | |
parent | 461fcaa6d458519343bf694fb5aef3f90b6da42f (diff) | |
download | cpython-410afbc5d8d11624bdb71650c4c79ed54318dd00.zip cpython-410afbc5d8d11624bdb71650c4c79ed54318dd00.tar.gz cpython-410afbc5d8d11624bdb71650c4c79ed54318dd00.tar.bz2 |
Fix local variable
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/pycolorize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/pycolorize.py b/Tools/scripts/pycolorize.py index 962d390..6edd223 100755 --- a/Tools/scripts/pycolorize.py +++ b/Tools/scripts/pycolorize.py @@ -76,7 +76,7 @@ default_html = '''\ def build_page(source, html=default_html, css=default_css): 'Create a complete HTML page with colorized Python source code' - css_str = ''.join(['%s %s\n' % item for item in default_css.items()]) + css_str = ''.join(['%s %s\n' % item for item in css.items()]) result = colorize(source) return html % (css_str, result) |