Merge branch 'release-1.1.1'

This commit is contained in:
2018-08-12 11:48:17 +02:00
2 changed files with 8 additions and 0 deletions

View File

@@ -18,6 +18,9 @@ Those can be installed using pip and the _requirements.txt_ file provided with t
Versions Versions
-------- --------
* v1.1.1
- Check if moved page exists
* v1.1 * v1.1
- Improved page filter - Improved page filter

View File

@@ -598,6 +598,11 @@ class RedFamWorker( RedFam ):
if self.article_has_status( "redirect", title=article ): if self.article_has_status( "redirect", title=article ):
try: try:
page = page.moved_target() page = page.moved_target()
# Short circuit if movement destination does not exists
if not page.exists():
continue
except pywikibot.exceptions.NoMoveTarget: except pywikibot.exceptions.NoMoveTarget:
pass pass