Submitter | Siddharth Agarwal |
---|---|
Date | May 21, 2017, 8:48 p.m. |
Message ID | <1bf07f6a0c323a4a842d.1495399682@devvm31800.prn1.facebook.com> |
Download | mbox | patch |
Permalink | /patch/20800/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/hg b/hg --- a/hg +++ b/hg @@ -28,8 +28,8 @@ if libdir != '@' 'LIBDIR' '@': # enable importing on demand to reduce startup time try: - if sys.version_info[0] < 3: - from mercurial import demandimport; demandimport.enable() + if sys.version_info[0] < 3 or sys.version_info >= (3, 6): + import hgdemandimport; hgdemandimport.enable() except ImportError: sys.stderr.write("abort: couldn't find mercurial libraries in [%s]\n" % ' '.join(sys.path))