summaryrefslogtreecommitdiff
path: root/tox/_quickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'tox/_quickstart.py')
-rw-r--r--tox/_quickstart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox/_quickstart.py b/tox/_quickstart.py
index a397cb1..59ee48e 100644
--- a/tox/_quickstart.py
+++ b/tox/_quickstart.py
@@ -119,7 +119,7 @@ def do_prompt(d, key, text, default=None, validator=nonempty):
x = term_input(prompt)
if default and not x:
x = default
- if sys.version_info < (3, ) and not isinstance(x, unicode):
+ if sys.version_info < (3, ) and not isinstance(x, unicode): # noqa
# for Python 2.x, try to get a Unicode string out of it
if x.decode('ascii', 'replace').encode('ascii', 'replace') != x:
if TERM_ENCODING: