Browse Source

Merge branch 'i#71-moved-page-exists' into develop

develop
Jonathan Golder 6 years ago
parent
commit
50b0e142ec
  1. 5
      lib/redfam.py

5
lib/redfam.py

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

Loading…
Cancel
Save