From f7ec6bacd303bd24a48587c1f4c3faa865f7e67f Mon Sep 17 00:00:00 2001 From: Patrick Ulbrich Date: Thu, 31 Mar 2016 12:50:58 +0200 Subject: [PATCH] Fix typo in idlers.py. Fixes #118 --- Mailnag/daemon/idlers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mailnag/daemon/idlers.py b/Mailnag/daemon/idlers.py index 8237ab7..8f53075 100644 --- a/Mailnag/daemon/idlers.py +++ b/Mailnag/daemon/idlers.py @@ -3,7 +3,7 @@ # # idlers.py # -# Copyright 2011 - 2015 Patrick Ulbrich +# Copyright 2011 - 2016 Patrick Ulbrich # Copyright 2011 Leighton Earl # # This program is free software; you can redistribute it and/or modify @@ -144,7 +144,7 @@ class Idler(object): def _select(self, conn, account): if len(account.folders) == 1: - conn.select(acount.folders[0]) + conn.select(account.folders[0]) else: conn.select("INBOX")