From e614fb12a0da06b787e498bfa6a9ef608b123824 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 9 Jun 1998 19:20:12 +0000 Subject: [PATCH] Changed runs of 8 spaces to tab -- to satisfy the tab nanny. --- Lib/test/test_support.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 478c8455cb13..3839c79be9cb 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -44,12 +44,12 @@ from os import unlink def findfile(file, here=__file__): import os - if os.path.isabs(file): + if os.path.isabs(file): return file - import sys - path = sys.path + import sys + path = sys.path path = [os.path.dirname(here)] + path - for dn in path: - fn = os.path.join(dn, file) - if os.path.exists(fn): return fn - return file + for dn in path: + fn = os.path.join(dn, file) + if os.path.exists(fn): return fn + return file -- 2.47.3