##// END OF EJS Templates
ui: ui.copy() now takes the ui class into account...
Ronny Pfannschmidt -
r8220:6e6ebeb5 default
parent child Browse files
Show More
@@ -35,7 +35,7 b' class ui(object):'
35 for f in util.rcpath():
35 for f in util.rcpath():
36 self.readconfig(f, trust=True)
36 self.readconfig(f, trust=True)
37 def copy(self):
37 def copy(self):
38 return ui(self)
38 return self.__class__(self)
39
39
40 def _is_trusted(self, fp, f):
40 def _is_trusted(self, fp, f):
41 st = util.fstat(fp)
41 st = util.fstat(fp)
General Comments 0
You need to be logged in to leave comments. Login now