diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 47c1acfd544..71027c11122 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)