Mercurial > hg
diff hgext/win32mbcs.py @ 43080:86e4daa2d54c
cleanup: mark some ui.(status|note|warn|write) calls as not needing i18n
These used to be marked with no-op parens, but black removes those now
and this is more explicit.
# skip-blame: fallout from mass reformatting
Differential Revision: https://phab.mercurial-scm.org/D6996
author | Augie Fackler <augie@google.com> |
---|---|
date | Sun, 06 Oct 2019 10:51:16 -0400 |
parents | 687b865b95ad |
children | 66f2cc210a29 |
line wrap: on
line diff
--- a/hgext/win32mbcs.py Sun Oct 06 10:10:14 2019 -0400 +++ b/hgext/win32mbcs.py Sun Oct 06 10:51:16 2019 -0400 @@ -215,4 +215,4 @@ # command line options is not yet applied when # extensions.loadall() is called. if b'--debug' in sys.argv: - ui.write(b"[win32mbcs] activated with encoding: %s\n" % _encoding) + ui.writenoi18n(b"[win32mbcs] activated with encoding: %s\n" % _encoding)