mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Web: Fix fetch. Use getUrl instead of getUrlFd.
This commit is contained in:
parent
784b8c37f8
commit
cb623b2f4e
@ -253,9 +253,9 @@ class Web(callbacks.PluginRegexp):
|
||||
irc.error(_('This command is disabled '
|
||||
'(supybot.plugins.Web.fetch.maximum is set to 0).'),
|
||||
Raise=True)
|
||||
fd = utils.web.getUrlFd(url) \
|
||||
fd = utils.web.getUrl(url, size=max) \
|
||||
.decode('utf8')
|
||||
irc.reply(fd.read(max))
|
||||
irc.reply(fd)
|
||||
fetch = wrap(fetch, ['url'])
|
||||
|
||||
Class = Web
|
||||
|
Loading…
Reference in New Issue
Block a user