From 1e55e8811159610041d2812884ca56013cb2009e Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Tue, 27 Jan 2009 12:18:23 +0000 Subject: [PATCH] fixed some typos in previous commit --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40784 --- scrapy/trunk/docs/ref/request-response.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/trunk/docs/ref/request-response.rst b/scrapy/trunk/docs/ref/request-response.rst index 942794bcb..5cf7fabbb 100644 --- a/scrapy/trunk/docs/ref/request-response.rst +++ b/scrapy/trunk/docs/ref/request-response.rst @@ -50,7 +50,7 @@ Request objects for the rest of the domain crawl, like any browser would do. Example:: request_with_cookies = Request(url="http://www.example.com", - cookies={currency='USD, country='UY'}) + cookies={currency: 'USD', country: 'UY'}) ``encoding`` is a string with the encoding of this request. This encoding will be used to percent-encode the URL and to convert the body to str (when