Kaydet (Commit) 673f7efa authored tarafından Georg Brandl's avatar Georg Brandl

Fix bug introduced by r59746.

üst 60bad0e0
......@@ -860,7 +860,7 @@ def _follow_symlinks(filepath):
""" In case filepath is a symlink, follow it until a
real file is reached.
"""
filepath = _abspath(filepath)
filepath = os.path.abspath(filepath)
while os.path.islink(filepath):
filepath = os.path.normpath(
os.path.join(filepath,os.readlink(filepath)))
......
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