##// END OF EJS Templates
wrapfunction: use sysstr instead of bytes as argument in "fsmonitor"...
marmoute -
r51671:ba3add90 default
parent child Browse files
Show More
@@ -755,9 +755,9 b' def extsetup(ui):'
755 )
755 )
756 if pycompat.isdarwin:
756 if pycompat.isdarwin:
757 # An assist for avoiding the dangling-symlink fsevents bug
757 # An assist for avoiding the dangling-symlink fsevents bug
758 extensions.wrapfunction(os, b'symlink', wrapsymlink)
758 extensions.wrapfunction(os, 'symlink', wrapsymlink)
759
759
760 extensions.wrapfunction(merge, b'_update', wrapupdate)
760 extensions.wrapfunction(merge, '_update', wrapupdate)
761
761
762
762
763 def wrapsymlink(orig, source, link_name):
763 def wrapsymlink(orig, source, link_name):
General Comments 0
You need to be logged in to leave comments. Login now