http://www.mediawiki.org/wiki/Special:Code/pywikipedia/10906
Revision: 10906 Author: xqt Date: 2013-01-13 15:34:02 +0000 (Sun, 13 Jan 2013) Log Message: ----------- fix for previous commit
Modified Paths: -------------- trunk/pywikipedia/checkimages.py
Modified: trunk/pywikipedia/checkimages.py =================================================================== --- trunk/pywikipedia/checkimages.py 2013-01-13 15:25:39 UTC (rev 10905) +++ trunk/pywikipedia/checkimages.py 2013-01-13 15:34:02 UTC (rev 10906) @@ -560,7 +560,7 @@
class main: def __init__(self, site, logFulNumber=25000, sendemailActive=False, - duplicatesRepor =False, logFullError=True): + duplicatesReport=False, logFullError=True): """ Constructor, define some global variable """ self.site = site self.logFullError = logFullError @@ -581,7 +581,7 @@ PageWithAllowedTemplates, fallback=False) # Commento = Summary in italian - self.commento = pywikibot.translate(self.site, comm) + self.commento = pywikibot.translate(self.site, msg_comm) # Adding the bot's nickname at the notification text if needed. botolist = pywikibot.translate(self.site, bot_list, fallback=False) project = pywikibot.getSite().family.name @@ -625,7 +625,7 @@ # Defining some useful variable for next... self.image_to_report = image_to_report self.newtext = newtext - self.head = head + self.head = head or u'' self.notification = notification self.notification2 = notification2
@@ -1733,7 +1733,7 @@ if len(arg) == 5: wait = True waitTime = int(pywikibot.input( - u'How many time do you want to wait before checking the " + u'How many time do you want to wait before checking the ' u'files?')) elif len(arg) > 5: wait = True
pywikipedia-svn@lists.wikimedia.org