##// END OF EJS Templates
context: use native string when peeking in __dict__...
Augie Fackler -
r35852:f61461d2 default
parent child Browse files
Show More
@@ -1051,7 +1051,7 b' class basefilectx(object):'
1051 # renamed filectx won't have a filelog yet, so set it
1051 # renamed filectx won't have a filelog yet, so set it
1052 # from the cache to save time
1052 # from the cache to save time
1053 for p in pl:
1053 for p in pl:
1054 if not '_filelog' in p.__dict__:
1054 if not r'_filelog' in p.__dict__:
1055 p._filelog = getlog(p.path())
1055 p._filelog = getlog(p.path())
1056
1056
1057 return pl
1057 return pl
General Comments 0
You need to be logged in to leave comments. Login now