mercurial/__init__.py
changeset 33502 5d0c0c8d2929
parent 32521 942051a29fb6
child 34396 9fb9f8440b71
--- a/mercurial/__init__.py	Tue Jul 11 00:40:29 2017 -0400
+++ b/mercurial/__init__.py	Fri Jul 14 20:19:46 2017 -0700
@@ -31,6 +31,9 @@
             # Only handle Mercurial-related modules.
             if not fullname.startswith(('mercurial.', 'hgext.', 'hgext3rd.')):
                 return None
+            # selectors2 is already dual-version clean, don't try and mangle it
+            if fullname.startswith('mercurial.selectors2'):
+                return None
             # zstd is already dual-version clean, don't try and mangle it
             if fullname.startswith('mercurial.zstd'):
                 return None