Wikipedia: Avoid showing useless 'non-result'.

This stops results like

View (previous 20 |  next 20) (20 | 50 | 100 | 250 | 500) http://en.wikipedia.org/wiki/Special:Search
master
Kill Your TV 2013-08-20 21:27:37 +00:00
parent 190e172252
commit c53e8f6dc4
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class Wikipedia(callbacks.Plugin):
else:
##### etree!
p = tree.xpath("//div[@id='mw-content-text']/p[1]")
if len(p) == 0:
if len(p) == 0 or addr.endswith('Special:Search'):
reply += _('Not found, or page bad formed.')
else:
p = p[0]