Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f79f5 commit bc4369bCopy full SHA for bc4369b
1 file changed
lib/core/option.py
@@ -1740,7 +1740,7 @@ def _useWizardInterface():
1740
message = "POST data (--data) [Enter for None]: "
1741
conf.data = readInput(message, default=None)
1742
1743
- 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:
1744
break
1745
else:
1746
warnMsg = "no GET and/or POST parameter(s) found for testing "
0 commit comments