Browse Source
Fix shared_config initialization typo
smh
pull/71/head
Spencer
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
disco/bot/bot.py
|
|
@ -506,7 +506,7 @@ class Bot(LoggingClass): |
|
|
|
|
|
|
|
data = {} |
|
|
|
if self.config.shared_config: |
|
|
|
data.update(self.config.shared) |
|
|
|
data.update(self.config.shared_config) |
|
|
|
|
|
|
|
if name in self.config.plugin_config: |
|
|
|
data.update(self.config.plugin_config[name]) |
|
|
|