1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 17:24:14 +00:00

simplified description of crawl command

This commit is contained in:
Pablo Hoffman 2013-10-21 14:42:51 -02:00
parent e8ee449a2a
commit 911c8082b0
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ some usage help and the available commands::
scrapy <command> [options] [args]
Available commands:
crawl Start crawling a spider or URL
crawl Run a spider
fetch Fetch a URL using the Scrapy downloader
[...]

View File

@ -10,7 +10,7 @@ class Command(ScrapyCommand):
return "[options] <spider>"
def short_desc(self):
return "Start crawling from a spider"
return "Run a spider"
def add_options(self, parser):
ScrapyCommand.add_options(self, parser)