jenkins-bot has submitted this change and it was merged.
Change subject: remove old debugging stuff ......................................................................
remove old debugging stuff
Change-Id: I7882cf55a99d11d256e3c241b536644b3f2978f0 --- M pagegenerators.py 1 file changed, 0 insertions(+), 4 deletions(-)
Approvals: Ladsgroup: Looks good to me, approved jenkins-bot: Verified
diff --git a/pagegenerators.py b/pagegenerators.py index 933526a..3908343 100644 --- a/pagegenerators.py +++ b/pagegenerators.py @@ -990,14 +990,12 @@ continue
for result in data.results: - #print 'DBG: ', result.URL yield result.URL # give an estimate of pages to work on, but only once. if not estimatedTotalResultsCount: pywikibot.output(u'Estimated total result count: %i pages.' % data.meta.estimatedTotalResultsCount) estimatedTotalResultsCount = data.meta.estimatedTotalResultsCount - #print 'estimatedTotalResultsCount: ', estimatedTotalResultsCount offset += 10
def __iter__(self): @@ -1029,11 +1027,9 @@ while True: try: namespaceNumber, pageName = cursor.fetchone() - print namespaceNumber, pageName except TypeError: # Limit reached or no more results break - #print pageName if pageName: namespace = site.namespace(namespaceNumber) pageName = unicode(pageName, site.encoding())
pywikibot-commits@lists.wikimedia.org