summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2016-03-28 02:20:23 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2016-03-28 02:20:23 -0700
commitbd16d8c8dc1d5609f2b6f983c5725fd38fb0f3b8 (patch)
tree56e7ed0b5ef7a54d0e5c32bd647eb2fdb1e92ebd
parentf9fb33d6437e7ac20170990dd6a35642de4827a1 (diff)
downloadisort-bd16d8c8dc1d5609f2b6f983c5725fd38fb0f3b8.tar.gz
Fix information
-rw-r--r--isort/isort.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isort/isort.py b/isort/isort.py
index 68e6e99f..ed9f04b9 100644
--- a/isort/isort.py
+++ b/isort/isort.py
@@ -178,7 +178,7 @@ class SortImports(object):
self._show_diff(file_contents)
answer = None
while answer not in ('yes', 'y', 'no', 'n', 'quit', 'q'):
- answer = input("Apply suggested changes to '{0}' [Y/n/q]?".format(self.file_path)).lower()
+ answer = input("Apply suggested changes to '{0}' [y/n/q]?".format(self.file_path)).lower()
if answer in ('no', 'n'):
return
if answer in ('quit', 'q'):