summaryrefslogtreecommitdiffstats
path: root/subcmds/init.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/init.py')
-rw-r--r--subcmds/init.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/init.py b/subcmds/init.py
index 48df9e89..99007d60 100644
--- a/subcmds/init.py
+++ b/subcmds/init.py
@@ -248,7 +248,7 @@ to update the working directory files.
248 print '' 248 print ''
249 print 'Your identity is: %s <%s>' % (name, email) 249 print 'Your identity is: %s <%s>' % (name, email)
250 sys.stdout.write('is this correct [y/N]? ') 250 sys.stdout.write('is this correct [y/N]? ')
251 a = sys.stdin.readline().strip() 251 a = sys.stdin.readline().strip().lower()
252 if a in ('yes', 'y', 't', 'true'): 252 if a in ('yes', 'y', 't', 'true'):
253 break 253 break
254 254