From 972896cd87f4773362daee8d39ffe4504d9ddcb2 Mon Sep 17 00:00:00 2001 From: olveyra Date: Tue, 2 Sep 2008 15:20:16 +0000 Subject: [PATCH] removed canonicalize from get function in shell --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40198 --- scrapy/trunk/scrapy/command/commands/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/trunk/scrapy/command/commands/shell.py b/scrapy/trunk/scrapy/command/commands/shell.py index c01bb8618..de4fcd7f5 100644 --- a/scrapy/trunk/scrapy/command/commands/shell.py +++ b/scrapy/trunk/scrapy/command/commands/shell.py @@ -72,7 +72,7 @@ class Command(ScrapyCommand): #print _failure print "Downloading URL... ", - url = canonicalize_url(url.strip()) + url = url.strip() r = Request(url) spider = get_or_create_spider(url) try: