Commit 5319067c 5319067c71f8029fa7838e83a25f7b87c939004d by Nicolas Perriault

fixed silly typo

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