diff --git a/lib/core/option.py b/lib/core/option.py index ab3f119a3..085a12c82 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1740,7 +1740,7 @@ def _useWizardInterface(): message = "POST data (--data) [Enter for None]: " conf.data = readInput(message, default=None) - if filter(lambda x: '=' in str(x), [conf.url, conf.data]) or '*' in conf.url: + if filter(lambda _: '=' in unicode(_), (conf.url, conf.data)) or '*' in conf.url: break else: warnMsg = "no GET and/or POST parameter(s) found for testing "