summaryrefslogtreecommitdiff
path: root/alot/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/account.py')
-rw-r--r--alot/account.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/account.py b/alot/account.py
index 0e590953..8faee595 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -7,7 +7,7 @@ import os
import glob
import shlex
-import helper
+from alot.settings.utils import read_config
class SendingMailFailed(RuntimeError):
@@ -201,7 +201,7 @@ class AbookAddressBook(AddressBook):
DEFAULTSPATH = os.path.join(os.path.dirname(__file__), 'defaults')
self._spec = os.path.join(DEFAULTSPATH, 'abook_contacts.spec')
path = os.path.expanduser(path)
- self._config = helper.read_config(path, self._spec)
+ self._config = read_config(path, self._spec)
del(self._config['format'])
def get_contacts(self):