aboutsummaryrefslogtreecommitdiff
path: root/Config.py
diff options
context:
space:
mode:
Diffstat (limited to 'Config.py')
-rw-r--r--Config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Config.py b/Config.py
index 21a144cf..894c9eb0 100644
--- a/Config.py
+++ b/Config.py
@@ -14,4 +14,4 @@ class Config(object):
with open(self.full_location) as config_file:
parser = configparser.ConfigParser()
parser.read_string(config_file.read())
- self.bot.config = dict(parser["bot"].items())
+ return dict(parser["bot"].items())