Small cleanup, update to 1.0.1

pull/1/head
Raphaël Vinot 2014-05-02 17:10:22 +02:00
parent 31eb0d4c96
commit 3fc24e2e89
2 changed files with 2 additions and 3 deletions

View File

@ -83,8 +83,7 @@ class PyMISP(object):
:param event: Elements to add
"""
session = self.__prepare_session()
return session.post(self.rest.format(event_id), data=event,
verify=self.ssl)
return session.post(self.rest.format(event_id), data=event)
def delete_event(self, event_id):
"""

View File

@ -4,7 +4,7 @@ from setuptools import setup
setup(
name='pymisp',
version='1.0',
version='1.0.1',
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',