From 1c5294bee1eb85dd1d0b752d5c5d588803c0b6d9 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Thu, 19 Apr 2012 02:15:30 -0300 Subject: [PATCH] update docstring in project template to avoid confusion with genspider command, which may be considered as an advanced feature. refs #107 --- scrapy/templates/project/module/spiders/__init__.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/scrapy/templates/project/module/spiders/__init__.py b/scrapy/templates/project/module/spiders/__init__.py index c930799c0..ebd689ac5 100644 --- a/scrapy/templates/project/module/spiders/__init__.py +++ b/scrapy/templates/project/module/spiders/__init__.py @@ -1,8 +1,4 @@ # This package will contain the spiders of your Scrapy project # -# To create the first spider for your project use this command: -# -# scrapy genspider myspider myspider-domain.com -# -# For more info see: -# http://doc.scrapy.org/topics/spiders.html +# Please refer to the documentation for information on how to create and manage +# your spiders.