From da05e977f3a85519805314ad8a7ebe4b944e13d4 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 15 May 2001 15:23:01 +0000 Subject: abspath(): Fix inconsistent indentation. --- Lib/ntpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12