hgext/releasenotes.py
changeset 49306 2e726c934fcd
parent 48946 642e31cb55f0
child 49519 943509a58d29
--- a/hgext/releasenotes.py	Tue May 31 21:16:17 2022 +0200
+++ b/hgext/releasenotes.py	Tue May 31 22:50:01 2022 +0200
@@ -13,7 +13,6 @@
 
 
 import difflib
-import errno
 import re
 
 from mercurial.i18n import _
@@ -688,10 +687,7 @@
     try:
         with open(file_, b'rb') as fh:
             notes = parsereleasenotesfile(sections, fh.read())
-    except IOError as e:
-        if e.errno != errno.ENOENT:
-            raise
-
+    except FileNotFoundError:
         notes = parsedreleasenotes()
 
     notes.merge(ui, incoming)