summaryrefslogtreecommitdiff
path: root/alot/widgets/globals.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-08-03 14:34:55 -0700
committerDylan Baker <dylan@pnwbakers.com>2017-08-03 14:34:55 -0700
commit037f223debd0aabfab3e2aad880765764f973d31 (patch)
treefe9b094cd1a75355644ec860a48e5239c86afc3e /alot/widgets/globals.py
parent827c9c0b78840048904883611a0c99bfa77b1725 (diff)
settings: do not store SettingsManager instance in __init__.py
This can create circular imports in unittests, which causes difficult to debug errors. Fixes #1076
Diffstat (limited to 'alot/widgets/globals.py')
-rw-r--r--alot/widgets/globals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/widgets/globals.py b/alot/widgets/globals.py
index 95b55465..6756149d 100644
--- a/alot/widgets/globals.py
+++ b/alot/widgets/globals.py
@@ -13,7 +13,7 @@ import operator
import urwid
from ..helper import string_decode
-from ..settings import settings
+from ..settings.const import settings
from ..db.attachment import Attachment
from ..errors import CompletionError