Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Fix defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
rauenzi committed Jun 18, 2017
1 parent efe32b8 commit 2013ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discordbot/discordbot.py
Expand Up @@ -78,7 +78,7 @@ def __init__(self, command_prefix, formatter=None, description=None, pm_help=Non
description = self.config.get("meta", {}).get("description", "")

if pm_help is None:
pm_help = self.config.get("meta", {}).get("pm_help", False)
pm_help = self.config.get("meta", {}).get("pm_help", None)

super().__init__(command_prefix, formatter=embeds.EmbedHelpFormatter(self),
description=description, pm_help=pm_help, command_not_found='No command called "{}" found.',
Expand Down

0 comments on commit 2013ab6

Please sign in to comment.