Pyfisch has submitted this change and it was merged.
Change subject: [bugfix] replace unknown catTitle with self.catTitle ......................................................................
[bugfix] replace unknown catTitle with self.catTitle
Change-Id: Ifb06ef71c8150653701dc937687a42787f89e1cc --- M scripts/category.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Pyfisch: Verified; Looks good to me, approved
diff --git a/scripts/category.py b/scripts/category.py index 95ea0ce..7542cf4 100755 --- a/scripts/category.py +++ b/scripts/category.py @@ -853,7 +853,7 @@ * maxDepth - the limit beyond which no subcategories will be listed
""" - cat = pywikibot.Category(self.site, catTitle) + cat = pywikibot.Category(self.site, self.catTitle) tree = self.treeview(cat) if self.filename: pywikibot.output(u'Saving results in %s' % self.filename)
pywikibot-commits@lists.wikimedia.org