From: Guido van Rossum Date: Tue, 9 Jun 1998 19:20:12 +0000 (+0000) Subject: Changed runs of 8 spaces to tab -- to satisfy the tab nanny. X-Git-Tag: v1.5.2a1~497 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e614fb12a0da06b787e498bfa6a9ef608b123824;p=python Changed runs of 8 spaces to tab -- to satisfy the tab nanny. --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 478c8455cb..3839c79be9 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