##// END OF EJS Templates
upgrade: byteify a few error messages...
Matt Harbison -
r49280:cb477ede stable
parent child Browse files
Show More
@@ -278,7 +278,7 b' def upgrade_share_to_safe('
278 278 ui.warn(_(b'repository upgraded to use share-safe mode\n'))
279 279 except error.LockError as e:
280 280 hint = _(
281 "see `hg help config.format.use-share-safe` for more information"
281 b"see `hg help config.format.use-share-safe` for more information"
282 282 )
283 283 if mismatch_config == b'upgrade-abort':
284 284 raise error.Abort(
@@ -335,7 +335,7 b' def downgrade_share_to_non_safe('
335 335 ui.warn(_(b'repository downgraded to not use share-safe mode\n'))
336 336 except error.LockError as e:
337 337 hint = _(
338 "see `hg help config.format.use-share-safe` for more information"
338 b"see `hg help config.format.use-share-safe` for more information"
339 339 )
340 340 # If upgrade-abort is set, abort when upgrade fails, else let the
341 341 # process continue as `upgrade-allow` is set
General Comments 0
You need to be logged in to leave comments. Login now