templater: replace Py3-only exception types by super-types available in Py2
As noted by @indygreg, `test-check-pyflakes.t` started failing on Py2
after my recent D8894, because that introduced catching of the
Py3-only types `ModuleNotFoundError` and `FileNotFoundError`. Let's
switch to less precise types that are also available in Py2.
Differential Revision: https://phab.mercurial-scm.org/D8902
--- a/mercurial/templater.py Wed Aug 05 14:19:42 2020 -0700
+++ b/mercurial/templater.py Wed Aug 05 22:13:51 2020 -0700
@@ -1107,5 +1107,5 @@
name,
resourceutil.open_resource(package_name, name_parts[-1]),
)
- except (ModuleNotFoundError, FileNotFoundError):
+ except (ImportError, OSError):
return None, None