[commands] Cleanup descriptions being passed.

This commit is contained in:
Rapptz 2016-01-13 22:05:21 -05:00
parent 4edff12f6b
commit b1d8e12609
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ class Bot(GroupMixin, discord.Client):
self.extra_events = {} self.extra_events = {}
self.cogs = {} self.cogs = {}
self.extensions = {} self.extensions = {}
self.description = description self.description = inspect.cleandoc(description)
self.pm_help = pm_help self.pm_help = pm_help
if formatter is not None: if formatter is not None:
if not isinstance(formatter, HelpFormatter): if not isinstance(formatter, HelpFormatter):

View File

@ -107,7 +107,7 @@ class Command:
self.brief = kwargs.get('brief') self.brief = kwargs.get('brief')
self.aliases = kwargs.get('aliases', []) self.aliases = kwargs.get('aliases', [])
self.pass_context = kwargs.get('pass_context', False) self.pass_context = kwargs.get('pass_context', False)
self.description = kwargs.get('description') self.description = inspect.cleandoc(kwargs.get('description', ''))
self.hidden = kwargs.get('hidden', False) self.hidden = kwargs.get('hidden', False)
signature = inspect.signature(callback) signature = inspect.signature(callback)
self.params = signature.parameters.copy() self.params = signature.parameters.copy()