From 35fd1a26600f84fbccd551bcdead7cbc7e451f67 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Fri, 27 Aug 2010 17:21:30 -0300 Subject: [PATCH] Fixed typo --- scrapy/spidermanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/spidermanager.py b/scrapy/spidermanager.py index 5c66ecf7d..9136e6fd4 100644 --- a/scrapy/spidermanager.py +++ b/scrapy/spidermanager.py @@ -29,7 +29,7 @@ class SpiderManager(object): def create(self, spider_name, **spider_kwargs): """Returns a Spider instance for the given spider name, using the given - spider arguments. If the sipder name is not found, it raises a + spider arguments. If the spider name is not found, it raises a KeyError. """ return self._spiders[spider_name](**spider_kwargs)