Mercurial > hg
comparison mercurial/extensions.py @ 51700:7f0cb9ee0534
Backout accidental publication of a large range of revisions
I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 23 Jul 2024 10:02:46 +0200 |
parents | 493034cc3265 |
children | ca7bde5dbafb |
comparison
equal
deleted
inserted
replaced
51699:bd1483fd7088 | 51700:7f0cb9ee0534 |
---|---|
288 ) | 288 ) |
289 ui.log(b'extension', b'- processing %d entries\n', len(result)) | 289 ui.log(b'extension', b'- processing %d entries\n', len(result)) |
290 with util.timedcm('load all extensions') as stats: | 290 with util.timedcm('load all extensions') as stats: |
291 default_sub_options = ui.configsuboptions(b"extensions", b"*")[1] | 291 default_sub_options = ui.configsuboptions(b"extensions", b"*")[1] |
292 | 292 |
293 for name, path in result: | 293 for (name, path) in result: |
294 if path: | 294 if path: |
295 if path[0:1] == b'!': | 295 if path[0:1] == b'!': |
296 if name not in _disabledextensions: | 296 if name not in _disabledextensions: |
297 ui.log( | 297 ui.log( |
298 b'extension', | 298 b'extension', |