##// END OF EJS Templates
template: FileNotFoundError is actually a built in exception...
marmoute -
r48665:2b76255a stable
parent child Browse files
Show More
@@ -40,6 +40,8 b' if not ispy3:'
40 40 def future_set_exception_info(f, exc_info):
41 41 f.set_exception_info(*exc_info)
42 42
43 # this is close enough for our usage
44 FileNotFoundError = OSError
43 45
44 46 else:
45 47 import concurrent.futures as futures
@@ -53,6 +55,8 b' else:'
53 55 def future_set_exception_info(f, exc_info):
54 56 f.set_exception(exc_info[0])
55 57
58 FileNotFoundError = __builtins__['FileNotFoundError']
59
56 60
57 61 def identity(a):
58 62 return a
@@ -71,7 +71,10 b' import abc'
71 71 import os
72 72
73 73 from .i18n import _
74 from .pycompat import getattr
74 from .pycompat import (
75 FileNotFoundError,
76 getattr,
77 )
75 78 from . import (
76 79 config,
77 80 encoding,
@@ -856,7 +859,7 b' def _readmapfile(fp, mapfile):'
856 859 subresource = resourceutil.open_resource(
857 860 b'mercurial.templates', rel
858 861 )
859 except resourceutil.FileNotFoundError:
862 except FileNotFoundError:
860 863 subresource = None
861 864 else:
862 865 dir = templatedir()
General Comments 0
You need to be logged in to leave comments. Login now