comparison mercurial/wireprototypes.py @ 52128:e08c878b5571

branching: merge stable into default Hopefully this will bring the last changes necessary to make the 3.13 tests green (on Linux).
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 26 Oct 2024 23:33:19 +0200
parents fd200f5bcaea 5ad5f0853a0a
children 5cc8deb96b48
comparison
equal deleted inserted replaced
52127:2dce4c01cec1 52128:e08c878b5571
415 b'%s config option does not specify any known ' 415 b'%s config option does not specify any known '
416 b'compression engines' 416 b'compression engines'
417 ) 417 )
418 % config, 418 % config,
419 hint=_(b'usable compression engines: %s') 419 hint=_(b'usable compression engines: %s')
420 % b', '.sorted(validnames), # pytype: disable=attribute-error 420 % b', '.join(sorted(validnames)),
421 ) 421 )
422 422
423 return compengines 423 return compengines
424 424
425 425