##// END OF EJS Templates
wireprototypes: fix exception handling code with a bad pytype suppression...
Matt Harbison -
r53012:5ad5f085 stable
parent child Browse files
Show More
@@ -396,7 +396,7 def supportedcompengines(ui, role):
396 )
396 )
397 % config,
397 % config,
398 hint=_(b'usable compression engines: %s')
398 hint=_(b'usable compression engines: %s')
399 % b', '.sorted(validnames), # pytype: disable=attribute-error
399 % b', '.join(sorted(validnames)),
400 )
400 )
401
401
402 return compengines
402 return compengines
General Comments 0
You need to be logged in to leave comments. Login now