##// END OF EJS Templates
scmutil: fix erroneous Abort call...
Adrian Buehlmann -
r13973:366fa83f default
parent child Browse files
Show More
@@ -128,7 +128,7 b' class opener(object):'
128 def __call__(self, path, mode="r", text=False, atomictemp=False):
128 def __call__(self, path, mode="r", text=False, atomictemp=False):
129 r = util.checkosfilename(path)
129 r = util.checkosfilename(path)
130 if r:
130 if r:
131 raise Abort("%s: %r" % (r, path))
131 raise util.Abort("%s: %r" % (r, path))
132 self.auditor(path)
132 self.auditor(path)
133 f = os.path.join(self.base, path)
133 f = os.path.join(self.base, path)
134
134
General Comments 0
You need to be logged in to leave comments. Login now