comparison mercurial/scmutil.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
728 """build an exception to be raised about a filtered changeid 728 """build an exception to be raised about a filtered changeid
729 729
730 This is extracted in a function to help extensions (eg: evolve) to 730 This is extracted in a function to help extensions (eg: evolve) to
731 experiment with various message variants.""" 731 experiment with various message variants."""
732 if repo.filtername.startswith(b'visible'): 732 if repo.filtername.startswith(b'visible'):
733
733 # Check if the changeset is obsolete 734 # Check if the changeset is obsolete
734 unfilteredrepo = repo.unfiltered() 735 unfilteredrepo = repo.unfiltered()
735 ctx = revsymbol(unfilteredrepo, changeid) 736 ctx = revsymbol(unfilteredrepo, changeid)
736 737
737 # If the changeset is obsolete, enrich the message with the reason 738 # If the changeset is obsolete, enrich the message with the reason