From patchwork Sat Mar 2 02:05:30 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D6041: py3: pass a str to getpass.getpass() From: phabricator X-Patchwork-Id: 38990 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Sat, 2 Mar 2019 02:05:30 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG8e364664a999: py3: pass a str to getpass.getpass() (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6041?vs=14284&id=14288 REVISION DETAIL https://phab.mercurial-scm.org/D6041 AFFECTED FILES mercurial/ui.py CHANGE DETAILS To: pulkit, #hg-reviewers Cc: mercurial-devel diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -1553,7 +1553,7 @@ raise EOFError return l.rstrip('\n') else: - return getpass.getpass('') + return getpass.getpass(r'') except EOFError: raise error.ResponseExpected()