diff mercurial/scmutil.py @ 37097:7f025c9b7865

directaccess: do not abort by 'ff...' hash Since the 'ff...' hash should never be hidden, we can just ignore it.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 24 Mar 2018 17:19:32 +0900
parents f0b6fbea00cf
children a8a902d7176e
line wrap: on
line diff
--- a/mercurial/scmutil.py	Fri Mar 23 11:20:13 2018 -0700
+++ b/mercurial/scmutil.py	Sat Mar 24 17:19:32 2018 +0900
@@ -1419,7 +1419,7 @@
 
         try:
             s = pmatch(s)
-        except error.LookupError:
+        except (error.LookupError, error.WdirUnsupported):
             s = None
 
         if s is not None: