Removed uneccessary call of list() on zip() object.

Signed-off-by: velleto <rr@velleto.com>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
velleto 2018-05-14 10:08:11 +02:00 committed by Nicolas Sebrecht
parent ac9ed47262
commit 5180b964d8

View File

@ -212,7 +212,7 @@ class WrappedIMAP4_SSL(UsefulIMAPMixIn, IMAP4_SSL):
"does not match configured fingerprint(s) %s. "
"Please verify and set 'cert_fingerprint' accordingly "
"if not set yet."%
(list(zip([hash.__name__ for hash in hashes], server_fingerprints)), host, self._fingerprint),
(zip([hash.__name__ for hash in hashes], server_fingerprints), host, self._fingerprint),
OfflineImapError.ERROR.REPO)