mirror of https://github.com/MISP/misp-modules
fix: Fixed variable name typo
parent
ee48d99845
commit
42bc6f8d2b
|
@ -39,7 +39,7 @@ def handler(q=False):
|
|||
return {'error': 'No API key provided'}
|
||||
try:
|
||||
accept_tac = _parse_bool(request['config'].get('accept-tac'), 'accept-tac')
|
||||
except _parseError as e:
|
||||
except _ParseError as e:
|
||||
return {'error': str(e)}
|
||||
attribute = request['attribute']
|
||||
joe = jbxapi.JoeSandbox(apiurl=apiurl, apikey=apikey, user_agent='MISP joesandbox_analysis', accept_tac=accept_tac)
|
||||
|
|
Loading…
Reference in New Issue