Browse Source

[commands] check if prefix is None in .pages

pull/2481/head
StarrFox 5 years ago
committed by Rapptz
parent
commit
e79ccf3f4c
  1. 2
      discord/ext/commands/help.py

2
discord/ext/commands/help.py

@ -157,7 +157,7 @@ class Paginator:
def pages(self):
"""Returns the rendered list of pages."""
# we have more than just the prefix in our current page
if len(self._current_page) > 1:
if len(self._current_page) > (0 if self.prefix is None else 1):
self.close_page()
return self._pages

Loading…
Cancel
Save