##// END OF EJS Templates
localrepo: use str for lookup in vars()...
Gregory Szorc -
r43732:a0916e88 stable
parent child Browse files
Show More
@@ -1417,7 +1417,7 b' class localrepository(object):'
1417
1417
1418 def _refreshchangelog(self):
1418 def _refreshchangelog(self):
1419 """make sure the in memory changelog match the on-disk one"""
1419 """make sure the in memory changelog match the on-disk one"""
1420 if b'changelog' in vars(self) and self.currenttransaction() is None:
1420 if 'changelog' in vars(self) and self.currenttransaction() is None:
1421 del self.changelog
1421 del self.changelog
1422
1422
1423 @property
1423 @property
General Comments 0
You need to be logged in to leave comments. Login now