Mercurial > hg-stable
changeset 44662:649fd6c3ed33
debugcommands: fix typo in debuguigetpass
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 29 Mar 2020 01:57:17 +0900 |
parents | 67f757ed86e0 |
children | e147748f750b |
files | mercurial/debugcommands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/debugcommands.py Thu Mar 26 22:31:17 2020 +0900 +++ b/mercurial/debugcommands.py Sun Mar 29 01:57:17 2020 +0900 @@ -3721,7 +3721,7 @@ 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(