From: Fred Drake Date: Tue, 15 May 2001 15:23:01 +0000 (+0000) Subject: abspath(): Fix inconsistent indentation. X-Git-Tag: v2.2a3~1773 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da05e977f3a85519805314ad8a7ebe4b944e13d4;p=thirdparty%2FPython%2Fcpython.git abspath(): Fix inconsistent indentation. --- diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 47c1acfd5441..71027c111229 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)