##// END OF EJS Templates
loader: pywatchman appears to already be py3 compatible...
Augie Fackler -
r32521:942051a2 default
parent child Browse files
Show More
@@ -34,6 +34,9 b' if sys.version_info[0] >= 3:'
34 # zstd is already dual-version clean, don't try and mangle it
34 # zstd is already dual-version clean, don't try and mangle it
35 if fullname.startswith('mercurial.zstd'):
35 if fullname.startswith('mercurial.zstd'):
36 return None
36 return None
37 # pywatchman is already dual-version clean, don't try and mangle it
38 if fullname.startswith('hgext.fsmonitor.pywatchman'):
39 return None
37
40
38 # Try to find the module using other registered finders.
41 # Try to find the module using other registered finders.
39 spec = None
42 spec = None
General Comments 0
You need to be logged in to leave comments. Login now