Fix modsearch when using spaces

master
sfan5 2015-09-26 13:45:29 +02:00
parent 29b86866f6
commit ce827a3826
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import web
def mod(phenny, input):
uri = "http://nimg.pf-control.de/MTstuff/modSearchAPI.php?q="
text, sc = web.get(uri + input.group(2))
text, sc = web.get(uri + web.urlencode(input.group(2)))
text = str(text, 'utf-8')
data = web.json(text)
answer = ""