Fix missing argument change

This commit is contained in:
Joseph Schorr 2016-05-23 17:44:22 -04:00
parent fa3b342901
commit f02d295dd8

View file

@ -69,8 +69,8 @@ class Signer(object):
return None
try:
return SIGNING_ENGINES[preference](app.config, key_directory)
except Exception:
return SIGNING_ENGINES[preference](app.config, config_provider)
except:
logger.exception('Could not initialize signing engine')
def __getattr__(self, name):