Fix missing argument change
This commit is contained in:
parent
fa3b342901
commit
f02d295dd8
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Reference in a new issue