mirror of https://github.com/MISP/PyMISP
fix: PyTaxonomies is not compatible with python<3.6
parent
0198c87b3f
commit
9352062de3
|
@ -37,11 +37,11 @@ try:
|
||||||
from .tools import Neo4j # noqa
|
from .tools import Neo4j # noqa
|
||||||
from .tools import stix # noqa
|
from .tools import stix # noqa
|
||||||
from .tools import openioc # noqa
|
from .tools import openioc # noqa
|
||||||
from .tools import load_warninglists # noqa
|
|
||||||
from .tools import ext_lookups # noqa
|
from .tools import ext_lookups # noqa
|
||||||
|
|
||||||
if sys.version_info >= (3, 6):
|
if sys.version_info >= (3, 6):
|
||||||
from .aping import ExpandedPyMISP # noqa
|
from .aping import ExpandedPyMISP # noqa
|
||||||
|
from .tools import load_warninglists # noqa
|
||||||
# Let's not bother with old python
|
# Let's not bother with old python
|
||||||
try:
|
try:
|
||||||
from .tools import reportlab_generator # noqa
|
from .tools import reportlab_generator # noqa
|
||||||
|
|
Loading…
Reference in New Issue