abspath(): Fix inconsistent indentation.

This commit is contained in:
Fred Drake 2001-05-15 15:23:01 +00:00
parent 2d9204199f
commit da05e977f3
1 changed files with 1 additions and 1 deletions

View 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)