diff options
author | Guido van Rossum <guido@python.org> | 1996-08-26 18:33:32 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-26 18:33:32 +0000 |
commit | a8763e54ff25a226e50b281671189382fd3c324c (patch) | |
tree | bea9ea9a9f5bb33cbdfef607b4a8ce5e6197e98b /Lib/dos-8x3/compilea.py | |
parent | 52a42fe9e706fb51ec608571c2b60e7694a5d0a2 (diff) | |
download | cpython-git-a8763e54ff25a226e50b281671189382fd3c324c.tar.gz |
Another batch of updates...
Diffstat (limited to 'Lib/dos-8x3/compilea.py')
-rwxr-xr-x | Lib/dos-8x3/compilea.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dos-8x3/compilea.py b/Lib/dos-8x3/compilea.py index 312028407d..9947569eb3 100755 --- a/Lib/dos-8x3/compilea.py +++ b/Lib/dos-8x3/compilea.py @@ -43,7 +43,7 @@ def compile_dir(dir, maxlevels = 10): def compile_path(skip_curdir = 1): for dir in sys.path: - if dir == os.curdir and skip_curdir: + if (not dir or dir == os.curdir) and skip_curdir: print 'Skipping current directory' else: compile_dir(dir, 0) |