fix: Fixed exception type for python 3.5

pull/222/head
chrisr3d 5 years ago
parent a18db2ed1d
commit cfbd63f14e
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
  1. 2
      misp_modules/modules/expansion/yara_syntax_validator.py

@ -2,7 +2,7 @@ import json
import requests
try:
import yara
except (OSError, ModuleNotFoundError):
except (OSError, ImportError):
print("yara is missing, use 'pip3 install yara' to install it.")
misperrors = {'error': 'Error'}

Loading…
Cancel
Save