commit | a8763e54ff25a226e50b281671189382fd3c324c | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Aug 26 18:33:32 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Aug 26 18:33:32 1996 +0000 |
tree | bea9ea9a9f5bb33cbdfef607b4a8ce5e6197e98b | |
parent | 52a42fe9e706fb51ec608571c2b60e7694a5d0a2 [diff] [blame] |
Another batch of updates...
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_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)