##// END OF EJS Templates
catch AttributeError in util.checklink...
Alexis S. L. Carvalho -
r4017:ea6174c9 default
parent child Browse files
Show More
@@ -722,7 +722,7 b' def checklink(path):'
722 os.symlink(".", name)
722 os.symlink(".", name)
723 os.unlink(name)
723 os.unlink(name)
724 return True
724 return True
725 except OSError:
725 except (OSError, AttributeError):
726 return False
726 return False
727
727
728 def linkfunc(path, fallback):
728 def linkfunc(path, fallback):
General Comments 0
You need to be logged in to leave comments. Login now