Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update NotConfigured() message about requirements
  • Loading branch information
redapple committed Jun 27, 2016
commit eaa62688ddb9fb84601f47cf65e3957d740119a4
2 changes: 1 addition & 1 deletion scrapy_deltafetch/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self, dir, reset=False, stats=None):
try:
dbmodule = __import__('bsddb3').db
except ImportError:
raise NotConfigured('bsddb or bsddb3 is required')
raise NotConfigured('bsddb3 is required')
self.dbmodule = dbmodule
self.dir = dir
self.reset = reset
Expand Down