summaryrefslogtreecommitdiff
path: root/alot/commands
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands')
-rw-r--r--alot/commands/__init__.py2
-rw-r--r--alot/commands/envelope.py2
-rw-r--r--alot/commands/globals.py2
-rw-r--r--alot/commands/thread.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index 6b84a50b..351fc993 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -9,7 +9,7 @@ import logging
import os
import re
-from ..settings import settings
+from ..settings.const import settings
from ..helper import split_commandstring, string_decode
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index 9fa8fac3..a9cfac74 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -26,7 +26,7 @@ from ..db.errors import DatabaseError
from ..errors import GPGProblem
from ..helper import email_as_string
from ..helper import string_decode
-from ..settings import settings
+from ..settings.const import settings
from ..settings.errors import NoMatchingAccount
from ..utils import argparse as cargparse
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 8e8c4fde..7c590802 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -34,7 +34,7 @@ from ..completion import TagsCompleter
from ..widgets.utils import DialogBox
from ..db.errors import DatabaseLockedError
from ..db.envelope import Envelope
-from ..settings import settings
+from ..settings.const import settings
from ..utils import argparse as cargparse
MODE = 'global'
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index ce5da649..0c23b037 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -31,7 +31,7 @@ from ..db.utils import extract_body
from ..db.envelope import Envelope
from ..db.attachment import Attachment
from ..db.errors import DatabaseROError
-from ..settings import settings
+from ..settings.const import settings
from ..helper import parse_mailcap_nametemplate
from ..helper import split_commandstring
from ..helper import email_as_string