##// END OF EJS Templates
repoview: specify setattr values as native strings
Augie Fackler -
r31358:4015dfc8 default
parent child Browse files
Show More
@@ -331,8 +331,8 b' class repoview(object):'
331 if cl is None:
331 if cl is None:
332 cl = copy.copy(unfichangelog)
332 cl = copy.copy(unfichangelog)
333 cl.filteredrevs = revs
333 cl.filteredrevs = revs
334 object.__setattr__(self, '_clcache', cl)
334 object.__setattr__(self, r'_clcache', cl)
335 object.__setattr__(self, '_clcachekey', newkey)
335 object.__setattr__(self, r'_clcachekey', newkey)
336 return cl
336 return cl
337
337
338 def unfiltered(self):
338 def unfiltered(self):
General Comments 0
You need to be logged in to leave comments. Login now