Skip to content

Commit

Permalink
BUG Fix comma typo in defaults values.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmax committed Dec 19, 2016
1 parent c595827 commit 3a1515a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scrapy_redis/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

SCHEDULER_QUEUE_KEY = '%(spider)s:requests'
SCHEDULER_QUEUE_CLASS = 'scrapy_redis.queue.PriorityQueue'
SCHEDULER_DUPEFILTER_KEY = '%(spider)s:dupefilter',
SCHEDULER_DUPEFILTER_CLASS = 'scrapy_redis.dupefilter.RFPDupeFilter',
SCHEDULER_DUPEFILTER_KEY = '%(spider)s:dupefilter'
SCHEDULER_DUPEFILTER_CLASS = 'scrapy_redis.dupefilter.RFPDupeFilter'

START_URLS_KEY = '%(name)s:start_urls'
START_URLS_AS_SET = False

0 comments on commit 3a1515a

Please sign in to comment.