1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-25 06:04:29 +00:00

changed odd logic in if statement

This commit is contained in:
Pablo Hoffman 2009-10-29 13:35:32 -02:00
parent b7a00cd2a1
commit 77b8cfadc7

View File

@ -57,9 +57,9 @@ class FormRequest(Request):
for v2 in v if hasattr(v, '__iter__') else [v]:
form.new_control('text', k, {'value': v2})
if not dont_click:
url, body, headers = form.click_request_data(**(clickdata or {}))
else:
if dont_click:
url, body, headers = form._switch_click('request_data')
else:
url, body, headers = form.click_request_data(**(clickdata or {}))
return cls(url, method=form.method, body=body, headers=headers, **kwargs)