Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bc4369b

Browse files
committed
Fix for an Issue #687
1 parent 73f79f5 commit bc4369b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ def _useWizardInterface():
17401740
message = "POST data (--data) [Enter for None]: "
17411741
conf.data = readInput(message, default=None)
17421742

1743-
if filter(lambda x: '=' in str(x), [conf.url, conf.data]) or '*' in conf.url:
1743+
if filter(lambda _: '=' in unicode(_), (conf.url, conf.data)) or '*' in conf.url:
17441744
break
17451745
else:
17461746
warnMsg = "no GET and/or POST parameter(s) found for testing "

0 commit comments

Comments
 (0)