jenkins-bot submitted this change.
[bugfix] Fix Subject.isDone()
Change-Id: I88078923a58aac75d5e632d2b99e317d2cceab6e
---
M scripts/interwiki.py
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/interwiki.py b/scripts/interwiki.py
index f91203b..6cf62dd 100755
--- a/scripts/interwiki.py
+++ b/scripts/interwiki.py
@@ -1352,7 +1352,7 @@
def isDone(self):
"""Return True if all the work for this subject has completed."""
- return bool(self.todo)
+ return len(self.todo) == 0
def problem(self, txt, createneed=True):
"""Report a problem with the resolution of this subject."""
To view, visit change 637595. To unsubscribe, or for help writing mail filters, visit settings.