Commit da05e977 authored by Fred Drake's avatar Fred Drake

abspath(): Fix inconsistent indentation.

parent 2d920419
...@@ -409,7 +409,7 @@ def abspath(path): ...@@ -409,7 +409,7 @@ def abspath(path):
try: try:
path = _getfullpathname(path) path = _getfullpathname(path)
except WindowsError: except WindowsError:
pass # Bad path - return unchanged. pass # Bad path - return unchanged.
else: else:
path = os.getcwd() path = os.getcwd()
return normpath(path) return normpath(path)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment