mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
Allow 'y' as a valid response when confirming identity
I prefer having to type only one character rather than all three, and it seems like other confirmation prompts use the same style.
This commit is contained in:
parent
9452e4ec09
commit
6d7508b3d5
@ -167,8 +167,9 @@ to update the working directory files.
|
||||
|
||||
print ''
|
||||
print 'Your identity is: %s <%s>' % (name, email)
|
||||
sys.stdout.write('is this correct [yes/no]? ')
|
||||
if 'yes' == sys.stdin.readline().strip():
|
||||
sys.stdout.write('is this correct [y/n]? ')
|
||||
a = sys.stdin.readline().strip()
|
||||
if a in ('yes', 'y', 't', 'true'):
|
||||
break
|
||||
|
||||
if name != mp.UserName:
|
||||
|
Loading…
Reference in New Issue
Block a user