mirror of https://github.com/coddrago/Heroku
Fix multiple spaces in `.help -f` for modules without commands
parent
3b18c068fb
commit
5dd942992e
|
@ -344,7 +344,7 @@ class HelpMod(loader.Module):
|
|||
core_.sort(key=lambda x: x.split()[1])
|
||||
inline_.sort(key=lambda x: x.split()[1])
|
||||
no_commands_.sort(key=lambda x: x.split()[1])
|
||||
no_commands_ = "\n".join(no_commands_) if force else ""
|
||||
no_commands_ = "".join(no_commands_) if force else ""
|
||||
|
||||
partial_load = (
|
||||
f"\n\n{self.strings('partial_load')}"
|
||||
|
|
Loading…
Reference in New Issue