summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-05-15 15:23:01 (GMT)
committerFred Drake <fdrake@acm.org>2001-05-15 15:23:01 (GMT)
commitda05e977f3a85519805314ad8a7ebe4b944e13d4 (patch)
tree4ec42c23b35c71ab6cc2b2d2c31ba6120c6fbd20 /Lib/ntpath.py
parent2d9204199fe8913cca9890f1822413d981587ee5 (diff)
downloadcpython-da05e977f3a85519805314ad8a7ebe4b944e13d4.zip
cpython-da05e977f3a85519805314ad8a7ebe4b944e13d4.tar.gz
cpython-da05e977f3a85519805314ad8a7ebe4b944e13d4.tar.bz2
abspath(): Fix inconsistent indentation.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 47c1acf..71027c1 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)