summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/ntpath.py2
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)