repository/__init__.py Removed unused variable

This variable is not used.
This commit is contained in:
Rodolfo García Peñas (kix) 2020-08-30 14:13:27 +02:00
parent e496525b8b
commit 2248a85f64

View File

@ -65,7 +65,7 @@ class Repository:
config = account.getconfig()
try:
repostype = config.get('Repository ' + name, 'type').strip()
except NoSectionError as e:
except NoSectionError:
errstr = ("Could not find section '%s' in configuration. Required "
"for account '%s'." % ('Repository %s' % name, account))
six.reraise(OfflineImapError,