summaryrefslogtreecommitdiff
path: root/alot/init.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/init.py')
-rwxr-xr-xalot/init.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/alot/init.py b/alot/init.py
index c6eb839a..c23fee93 100755
--- a/alot/init.py
+++ b/alot/init.py
@@ -63,15 +63,15 @@ def main():
settings.config.read(configfilename)
settings.hooks.setup(settings.config.get('general', 'hooksfile'))
- #accountman
- aman = AccountManager(settings.config)
-
# setup logging
numeric_loglevel = getattr(logging, args.debug_level.upper(), None)
logfilename = os.path.expanduser(args.logfile)
logging.basicConfig(level=numeric_loglevel, filename=logfilename)
logger = logging.getLogger()
+ #accountman
+ aman = AccountManager(settings.config)
+
# get ourselves a database manager
dbman = DBManager(path=args.db_path, ro=args.read_only)