##// END OF EJS Templates
hghave: fix hardlink-whitelisted check on Python 3...
Augie Fackler -
r36960:bf730128 default
parent child Browse files
Show More
@@ -372,7 +372,7 b' def has_hardlink():'
372 372 def has_hardlink_whitelisted():
373 373 from mercurial import util
374 374 try:
375 fstype = util.getfstype('.')
375 fstype = util.getfstype(b'.')
376 376 except OSError:
377 377 return False
378 378 return fstype in util._hardlinkfswhitelist
General Comments 0
You need to be logged in to leave comments. Login now