1
0
Fork 0
mirror of synced 2024-06-03 03:04:33 +12:00

Corrected issue where providing a page with help didn't change the page

This commit is contained in:
Phxntxm 2017-02-17 18:00:34 -06:00
parent 7b4ef527d1
commit 2d3e5d680c

View file

@ -71,7 +71,7 @@ class Core:
entries = sorted(utils.get_all_commands(self.bot))
try:
pages = utils.Pages(self.bot, message=ctx.message, entries=entries)
await pages.paginate()
await pages.paginate(start_page=page)
except utils.CannotPaginate as e:
await self.bot.say(str(e))
else: