From b6b690fb833e7031a3008509c1107f7567c065f3 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 18 Jan 2014 13:29:19 +0100 Subject: manual prettifying and small fixes after futurize run --- scripts/find_error.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts/find_error.py') 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__), '..') -- cgit v1.2.1