Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 410afbc

Browse files
committed
Fix local variable
1 parent 461fcaa commit 410afbc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/scripts/pycolorize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def colorize(source):
7676

7777
def build_page(source, html=default_html, css=default_css):
7878
'Create a complete HTML page with colorized Python source code'
79-
css_str = ''.join(['%s %s\n' % item for item in default_css.items()])
79+
css_str = ''.join(['%s %s\n' % item for item in css.items()])
8080
result = colorize(source)
8181
return html % (css_str, result)
8282

0 commit comments

Comments
 (0)