mercurial/revlogutils/sidedata.py
changeset 43037 142deb539ccf
parent 43036 e8bc4c3d9a0b
child 43040 ba4072c0a911
--- a/mercurial/revlogutils/sidedata.py	Wed Sep 04 03:19:58 2019 +0200
+++ b/mercurial/revlogutils/sidedata.py	Wed Sep 04 03:20:55 2019 +0200
@@ -77,3 +77,9 @@
 def sidedatarawprocessor(rl, text):
     # side data modifies rawtext and prevent rawtext hash validation
     return False
+
+processors = (
+    sidedatareadprocessor,
+    sidedatawriteprocessor,
+    sidedatarawprocessor,
+)