##// END OF EJS Templates
Fix issue 653: symlinks checkout failure on non-supporting platforms
Patrick Mezard -
r5077:84b10dc3 default
parent child Browse files
Show More
@@ -1308,7 +1308,7 b' class opener(object):'
1308 1308 if self._can_symlink:
1309 1309 os.symlink(src, linkname)
1310 1310 else:
1311 f = self(self, dst, "w")
1311 f = self(dst, "w")
1312 1312 f.write(src)
1313 1313 f.close()
1314 1314
General Comments 0
You need to be logged in to leave comments. Login now