diff options
author | Guido van Rossum <guido@python.org> | 1996-08-26 18:33:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-26 18:33:32 (GMT) |
commit | a8763e54ff25a226e50b281671189382fd3c324c (patch) | |
tree | bea9ea9a9f5bb33cbdfef607b4a8ce5e6197e98b /Lib/dos_8x3/compilea.py | |
parent | 52a42fe9e706fb51ec608571c2b60e7694a5d0a2 (diff) | |
download | cpython-a8763e54ff25a226e50b281671189382fd3c324c.zip cpython-a8763e54ff25a226e50b281671189382fd3c324c.tar.gz cpython-a8763e54ff25a226e50b281671189382fd3c324c.tar.bz2 |
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 3120284..9947569 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) |