Merlijn van Deen has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/243507

Change subject: [IMPROV] nowcommons: Query at most one users
......................................................................

[IMPROV] nowcommons: Query at most one users

To verify if a page is used it's only necessary to query one using page instead
of all.

Conflicts:
        scripts/nowcommons.py

Change-Id: I9bbb206ede1723c33410c3b50e05dae71ecc265f
---
M scripts/nowcommons.py
1 file changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core 
refs/changes/07/243507/1

diff --git a/scripts/nowcommons.py b/scripts/nowcommons.py
index b462ec7..3e4e5b7 100755
--- a/scripts/nowcommons.py
+++ b/scripts/nowcommons.py
@@ -369,9 +369,9 @@
                                 oImageRobot.run()
                                 # If the image is used with the urlname the
                                 # previous function won't work
-                                if len(list(pywikibot.FilePage(self.site,
-                                                                
page.title()).usingPages())) > 0 and \
-                                                                
self.getOption('replaceloose'):
+                                is_used = bool(list(pywikibot.FilePage(
+                                    self.site, 
page.title()).usingPages(total=1)))
+                                if is_used and self.getOption('replaceloose'):
                                     oImageRobot = image.ImageRobot(
                                         pg.FileLinksGenerator(
                                             localImagePage),

-- 
To view, visit https://gerrit.wikimedia.org/r/243507
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9bbb206ede1723c33410c3b50e05dae71ecc265f
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/core
Gerrit-Branch: 2.0
Gerrit-Owner: Merlijn van Deen <valhall...@arctus.nl>
Gerrit-Reviewer: XZise <commodorefabia...@gmx.de>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to