From c2ced9a2341d63e8b66ff39e8f3c170e32dadff6 Mon Sep 17 00:00:00 2001 From: Rolando Espinoza La fuente Date: Sat, 19 Oct 2013 22:57:37 -0400 Subject: [PATCH] Removed reference to URL in crawl command as it's no longer supported. --- scrapy/commands/crawl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/commands/crawl.py b/scrapy/commands/crawl.py index b781b1a64..cafbac6f8 100644 --- a/scrapy/commands/crawl.py +++ b/scrapy/commands/crawl.py @@ -10,7 +10,7 @@ class Command(ScrapyCommand): return "[options] " def short_desc(self): - return "Start crawling from a spider or URL" + return "Start crawling from a spider" def add_options(self, parser): ScrapyCommand.add_options(self, parser)