removed debugging print

This commit is contained in:
Pablo Hoffman 2011-06-15 12:35:54 -03:00
parent 57c43fdce6
commit cd52a7c83b
1 changed files with 0 additions and 1 deletions

View File

@ -18,7 +18,6 @@ class SitemapSpider(BaseSpider):
if isinstance(c, basestring):
c = getattr(self, c)
self._cbs.append((r, c))
print self._cbs
def start_requests(self):
return [Request(x, callback=self._parse_sitemap) for x in self.sitemap_urls]