Browse Source

Merge branch 'release-1.1.1'

master v1.1.1
Jonathan Golder 6 years ago
parent
commit
4f31b1a792
  1. 3
      README.md
  2. 5
      lib/redfam.py

3
README.md

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

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