Commit 5319067c 5319067c71f8029fa7838e83a25f7b87c939004d by Nicolas Perriault

fixed silly typo

1 parent 100f22a7
......@@ -6,7 +6,7 @@ import sys
def resolve(path):
while os.path.islink(path):
if os.path.islink(path):
return resolve(os.readlink(path))
return path
......