# HG changeset patch # User FUJIWARA Katsunori # Date 1464195454 -32400 # Node ID 269f7ea089839f2e00f2ffa3f85272ec94f9070a # Parent 48afcaadf70eb0fb721b2c8531e699c8e18c7d2d httppeer: make a message translatable This message has been overlooked by check-code, because it starts with non-alphabet character ('('). Making this message translatable seems reasonable, because exception message below in same function is already translatable - 'cannot create new http repository' This is also a part of preparation for making "missing _() in ui message" detection of check-code more exact. diff -r 48afcaadf70e -r 269f7ea08983 mercurial/httppeer.py --- a/mercurial/httppeer.py Thu May 26 01:57:34 2016 +0900 +++ b/mercurial/httppeer.py Thu May 26 01:57:34 2016 +0900 @@ -302,7 +302,7 @@ except error.RepoError as httpexception: try: r = statichttprepo.instance(ui, "static-" + path, create) - ui.note('(falling back to static-http)\n') + ui.note(_('(falling back to static-http)\n')) return r except error.RepoError: raise httpexception # use the original http RepoError instead