diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-15 15:23:01 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-15 15:23:01 +0000 |
commit | da05e977f3a85519805314ad8a7ebe4b944e13d4 (patch) | |
tree | 4ec42c23b35c71ab6cc2b2d2c31ba6120c6fbd20 /Lib/ntpath.py | |
parent | 2d9204199fe8913cca9890f1822413d981587ee5 (diff) | |
download | cpython-git-da05e977f3a85519805314ad8a7ebe4b944e13d4.tar.gz |
abspath(): Fix inconsistent indentation.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 47c1acfd54..71027c1112 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -409,7 +409,7 @@ def abspath(path): try: path = _getfullpathname(path) except WindowsError: - pass # Bad path - return unchanged. + pass # Bad path - return unchanged. else: path = os.getcwd() return normpath(path) |