Skip to content

Commit

Permalink
fix: ignore_version is a string, not a boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed May 7, 2024
1 parent ca4e95b commit 3111971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kingfisher_scrapy/base_spiders/base_spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def __init__(
# DatabaseStore extension.
self.database_store_compile_releases = compile_releases == 'true'
self.database_store_table_name = table_name
self.database_store_force_version = force_version == 'true'
self.database_store_force_version = force_version
self.database_store_ignore_version = ignore_version == 'true'

# Pluck pipeline.
Expand Down

0 comments on commit 3111971

Please sign in to comment.