From 287e3aa17b55912c773d8130195b996a1ddc7bfa Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Sat, 19 Jan 2019 12:48:55 -0500 Subject: [PATCH] Fix initializing constant --- core/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/__init__.py b/core/__init__.py index 2213276e..2ad98d34 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -1064,5 +1064,7 @@ def initialize(section=None): configure_sections(section) configure_torrent_class() - # finished initalizing - return True + __INITIALIZED__ = True + + # finished initializing + return __INITIALIZED__