This commit is contained in:
Robin Roth 2016-02-08 19:10:04 +01:00
parent c0ebb74ad0
commit f3f3e3c660

View file

@ -70,7 +70,7 @@ def ismount(path):
return False
else:
# A symlink can never be a mount point
if os.stat.S_ISLNK(s1.st_mode):
if os.path.stat.S_ISLNK(s1.st_mode):
return False
parent = os.path.join(path, os.path.pardir)