templates: fix default item class path

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%401099
This commit is contained in:
Daniel Grana 2009-04-28 13:48:05 +00:00
parent cc62bba80e
commit e5892050bd
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ BOT_VERSION = '1.0'
SPIDER_MODULES = ['$project_name.spiders']
NEWSPIDER_MODULE = '$project_name.spiders'
TEMPLATES_DIR = '%s/templates' % $project_name.__path__[0]
DEFAULT_ITEM_CLASS = '$project_name.item.${ProjectName}Item'
DEFAULT_ITEM_CLASS = '$project_name.items.${ProjectName}Item'
USER_AGENT = '%s/%s' % (BOT_NAME, BOT_VERSION)