[Pywikipedia-l] SVN: [5380] trunk/pywikipedia/redirect.py
wikipedian at svn.wikimedia.org
wikipedian at svn.wikimedia.org
Thu May 15 22:21:36 UTC 2008
Revision: 5380
Author: wikipedian
Date: 2008-05-15 22:21:36 +0000 (Thu, 15 May 2008)
Log Message:
-----------
"broken redirect" mode: show the redirect target page title
Modified Paths:
--------------
trunk/pywikipedia/redirect.py
Modified: trunk/pywikipedia/redirect.py
===================================================================
--- trunk/pywikipedia/redirect.py 2008-05-15 19:50:10 UTC (rev 5379)
+++ trunk/pywikipedia/redirect.py 2008-05-15 22:21:36 UTC (rev 5380)
@@ -336,17 +336,17 @@
try:
targetPage.get()
except wikipedia.NoPage:
- if self.prompt(u'Do you want to delete %s?'
- % redir_page.aslink()):
+ if self.prompt(u'Redirect target %s does not exist. Do you want to delete %s?'
+ % (targetPage.aslink(), redir_page.aslink())):
redir_page.delete(reason, prompt = False)
except wikipedia.IsRedirectPage:
wikipedia.output(
- u'Redirect target is also a redirect! Won\'t delete anything.')
+ u'Redirect target %s is also a redirect! Won\'t delete anything.' % targetPage.aslink())
else:
#we successfully get the target page, meaning that
#it exists and is not a redirect: no reason to touch it.
wikipedia.output(
- u'Redirect target does exist! Won\'t delete anything.')
+ u'Redirect target %s does exist! Won\'t delete anything.' % targetPage.aslink())
# idle for 1 minute
wikipedia.output(u'')
wikipedia.put_throttle()
More information about the Pywikipedia-l
mailing list