Show More
@@ -176,8 +176,12 b' def _processflagsfunc(revlog, text, flag' | |||
|
176 | 176 | vhash = True |
|
177 | 177 | |
|
178 | 178 | if flag not in revlog._flagprocessors: |
|
179 | hint = None | |
|
180 | if flag == REVIDX_EXTSTORED: | |
|
181 | hint = _(b"the lfs extension must be enabled") | |
|
182 | ||
|
179 | 183 | message = _(b"missing processor for flag '%#x'") % flag |
|
180 | raise revlog._flagserrorclass(message) | |
|
184 | raise revlog._flagserrorclass(message, hint=hint) | |
|
181 | 185 | |
|
182 | 186 | processor = revlog._flagprocessors[flag] |
|
183 | 187 | if processor is not None: |
General Comments 0
You need to be logged in to leave comments.
Login now