diff options
author | Guido van Rossum <guido@python.org> | 1998-06-09 19:20:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-06-09 19:20:12 (GMT) |
commit | e614fb12a0da06b787e498bfa6a9ef608b123824 (patch) | |
tree | 95f162706134e2ab5d4acc85d2defa281434ce99 | |
parent | 068ad9733023ee7dcce9184a39887e30421ed711 (diff) | |
download | cpython-e614fb12a0da06b787e498bfa6a9ef608b123824.zip cpython-e614fb12a0da06b787e498bfa6a9ef608b123824.tar.gz cpython-e614fb12a0da06b787e498bfa6a9ef608b123824.tar.bz2 |
Changed runs of 8 spaces to tab -- to satisfy the tab nanny.
-rw-r--r-- | Lib/test/test_support.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 478c845..3839c79 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 |