]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
abspath(): Fix inconsistent indentation.
authorFred Drake <fdrake@acm.org>
Tue, 15 May 2001 15:23:01 +0000 (15:23 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 15 May 2001 15:23:01 +0000 (15:23 +0000)
Lib/ntpath.py

index 47c1acfd5441ef5b9fdef95fb17c2b1da78e7e63..71027c1112293e6bc44406ba7651e0d80f528ef1 100644 (file)
@@ -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)