##// END OF EJS Templates
revlog: rewrite `censors.py` to `rewrite.py`...
marmoute -
r48257:bc8536e0 default
parent child Browse files
Show More
@@ -81,13 +81,13 b' from .interfaces import ('
81 util as interfaceutil,
81 util as interfaceutil,
82 )
82 )
83 from .revlogutils import (
83 from .revlogutils import (
84 censor,
85 deltas as deltautil,
84 deltas as deltautil,
86 docket as docketutil,
85 docket as docketutil,
87 flagutil,
86 flagutil,
88 nodemap as nodemaputil,
87 nodemap as nodemaputil,
89 randomaccessfile,
88 randomaccessfile,
90 revlogv0,
89 revlogv0,
90 rewrite,
91 sidedata as sidedatautil,
91 sidedata as sidedatautil,
92 )
92 )
93 from .utils import (
93 from .utils import (
@@ -3075,9 +3075,9 b' class revlog(object):'
3075 % self._format_version
3075 % self._format_version
3076 )
3076 )
3077 elif self._format_version == REVLOGV1:
3077 elif self._format_version == REVLOGV1:
3078 censor.v1_censor(self, tr, censornode, tombstone)
3078 rewrite.v1_censor(self, tr, censornode, tombstone)
3079 else:
3079 else:
3080 censor.v2_censor(self, tr, censornode, tombstone)
3080 rewrite.v2_censor(self, tr, censornode, tombstone)
3081
3081
3082 def verifyintegrity(self, state):
3082 def verifyintegrity(self, state):
3083 """Verifies the integrity of the revlog.
3083 """Verifies the integrity of the revlog.
1 NO CONTENT: file renamed from mercurial/revlogutils/censor.py to mercurial/revlogutils/rewrite.py
NO CONTENT: file renamed from mercurial/revlogutils/censor.py to mercurial/revlogutils/rewrite.py
General Comments 0
You need to be logged in to leave comments. Login now