Skip to content

Commit

Permalink
Fix copy-paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
dlazesz committed May 21, 2021
1 parent 456ae39 commit 0d4f74f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webarticlecurator/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def wrap_input_consants(current_task_config_filename):
if settings['infinite_scrolling']:
if not settings['next_url_by_pagenum']:
raise ValueError('If infinite_scrolling is true, next_url_by_pagenum must be also true!')
if not settings['EXTRACT_NEXT_PAGE_URL_FUN'] is not None:
if settings['EXTRACT_NEXT_PAGE_URL_FUN'] is not None:
raise ValueError('If infinite_scrolling is true, extract_next_page_url_fun must be None!')

# Set and init converter class which is dummy-converter by default
Expand Down
2 changes: 1 addition & 1 deletion webarticlecurator/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8, vim: expandtab:ts=4 -*-

__version__ = '1.3.0'
__version__ = '1.3.1'

0 comments on commit 0d4f74f

Please sign in to comment.