diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-07-04 09:07:06 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-07-04 09:07:06 (GMT) |
commit | 3bee1f1154218b6bdadfe4095ef4b52c3471df01 (patch) | |
tree | b1d63aa6147c3889e21c6151aa48782e4139d0fd /Tools/scripts | |
parent | 5b381a3650e9f79b3db48a5ee44e60b7cc20fb15 (diff) | |
download | cpython-3bee1f1154218b6bdadfe4095ef4b52c3471df01.zip cpython-3bee1f1154218b6bdadfe4095ef4b52c3471df01.tar.gz cpython-3bee1f1154218b6bdadfe4095ef4b52c3471df01.tar.bz2 |
Fix undefined names in __all__.
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/highlight.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/highlight.py b/Tools/scripts/highlight.py index 74f8649..5112523 100755 --- a/Tools/scripts/highlight.py +++ b/Tools/scripts/highlight.py @@ -17,8 +17,8 @@ Example command-line calls: ''' -__all__ = ['colorize', 'build_page', 'default_css', 'default_html', - 'ansi_colorize', 'default_ansi'] +__all__ = ['colorize_html', 'build_page', 'default_css', 'default_html', + 'colorize_ansi', 'default_ansi'] __author__ = 'Raymond Hettinger' import keyword, tokenize, cgi, functools |