diff options
author | Georg Brandl <georg@python.org> | 2014-01-18 13:29:19 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-01-18 13:29:19 +0100 |
commit | b6b690fb833e7031a3008509c1107f7567c065f3 (patch) | |
tree | d7b80f8e63919a94dfe7dc5bd8106d98ee4b5251 /scripts/find_error.py | |
parent | a9169c157a05c82a1b8a7ffb92e7f159fb4ca0f8 (diff) | |
download | pygments-b6b690fb833e7031a3008509c1107f7567c065f3.tar.gz |
manual prettifying and small fixes after futurize run
Diffstat (limited to 'scripts/find_error.py')
-rwxr-xr-x | scripts/find_error.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/find_error.py b/scripts/find_error.py index 3ee77d7d..7a513701 100755 --- a/scripts/find_error.py +++ b/scripts/find_error.py @@ -11,9 +11,11 @@ :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ + from __future__ import print_function -import sys, os +import os +import sys # always prefer Pygments from source if exists srcpath = os.path.join(os.path.dirname(__file__), '..') |