From 977e13e3b961ecf145ff036679f97d9e0e2f7e22 Mon Sep 17 00:00:00 2001 From: elpolilla Date: Tue, 2 Dec 2008 16:04:29 +0000 Subject: [PATCH] Fixed wrong help text in parse command --HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40463 --- scrapy/trunk/scrapy/command/commands/parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/trunk/scrapy/command/commands/parse.py b/scrapy/trunk/scrapy/command/commands/parse.py index 284428fd4..ddc0d8560 100644 --- a/scrapy/trunk/scrapy/command/commands/parse.py +++ b/scrapy/trunk/scrapy/command/commands/parse.py @@ -18,7 +18,7 @@ class Command(ScrapyCommand): parser.add_option("--nolinks", dest="nolinks", action="store_true", help="don't show extracted links") parser.add_option("--noitems", dest="noitems", action="store_true", help="don't show scraped items") parser.add_option("--nocolour", dest="nocolour", action="store_true", help="avoid using pygments to colorize the output") - parser.add_option("--matches", dest="matches", action="store_true", help="avoid using pygments to colorize the output") + parser.add_option("--matches", dest="matches", action="store_true", help="try to match and parse the url with the defined rules (if any)") def pipeline_process(self, item, spider, opts): return item