# HG changeset patch # User Yuya Nishihara # Date 2020-03-28 16:57:17 # Node ID 649fd6c3ed3313939ac8e2d7872f9946b3c4b430 # Parent 67f757ed86e0bcc4e58778bf402c45d8f688f2f7 debugcommands: fix typo in debuguigetpass diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -3721,7 +3721,7 @@ def debugtemplate(ui, repo, tmpl, **opts def debuguigetpass(ui, prompt=b''): """show prompt to type password""" r = ui.getpass(prompt) - ui.writenoi18n(b'respose: %s\n' % r) + ui.writenoi18n(b'response: %s\n' % r) @command(