Skip to content

Commit

Permalink
Made it possible to answer output questions using small characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
bebraw committed Dec 29, 2010
1 parent d51f429 commit e8e3505
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion speccer/runner.py
Expand Up @@ -90,7 +90,8 @@ def do_nothing():
answer = 'Y'
else:
answer = raw_input('Are you sure you want to override file (' +
py_file_name + ')?\n' + opts)
py_file_name + ')?\n' + opts + '\n')
answer = answer.upper()

if answer == 'A':
got_all = True
Expand Down
2 changes: 1 addition & 1 deletion speccer/version.py
Expand Up @@ -2,4 +2,4 @@

def get():
# returns current version of the lib
return '0.3.6'
return '0.3.7'

0 comments on commit e8e3505

Please sign in to comment.