Update get.py

pull/4/head
Alexander J 2016-02-12 11:31:48 +01:00
parent b5764c8660
commit ca45771171
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
from pymisp import PyMISP
from keys import misp_url, misp_key
from keys import misp_url, misp_key,misp_verifycert
import argparse
import os
import json
@ -12,7 +12,7 @@ import json
def init(url, key):
return PyMISP(url, key, True, 'json')
return PyMISP(url, key, misp_verifycert, 'json')
def get_event(m, event, out=None):