mercurial/dirstate.py
changeset 49306 2e726c934fcd
parent 48946 642e31cb55f0
child 49310 050dc8730858
--- a/mercurial/dirstate.py	Tue May 31 21:16:17 2022 +0200
+++ b/mercurial/dirstate.py	Tue May 31 22:50:01 2022 +0200
@@ -195,9 +195,7 @@
     def _branch(self):
         try:
             return self._opener.read(b"branch").strip() or b"default"
-        except IOError as inst:
-            if inst.errno != errno.ENOENT:
-                raise
+        except FileNotFoundError:
             return b"default"
 
     @property