##// END OF EJS Templates
repoview: convert attribute names to unicodes on Python 3...
Pulkit Goyal -
r31221:2faf233b default
parent child Browse files
Show More
@@ -300,10 +300,10 b' class repoview(object):'
300 """
300 """
301
301
302 def __init__(self, repo, filtername):
302 def __init__(self, repo, filtername):
303 object.__setattr__(self, '_unfilteredrepo', repo)
303 object.__setattr__(self, r'_unfilteredrepo', repo)
304 object.__setattr__(self, 'filtername', filtername)
304 object.__setattr__(self, r'filtername', filtername)
305 object.__setattr__(self, '_clcachekey', None)
305 object.__setattr__(self, r'_clcachekey', None)
306 object.__setattr__(self, '_clcache', None)
306 object.__setattr__(self, r'_clcache', None)
307
307
308 # not a propertycache on purpose we shall implement a proper cache later
308 # not a propertycache on purpose we shall implement a proper cache later
309 @property
309 @property
General Comments 0
You need to be logged in to leave comments. Login now