From c0d375473aa619b7fcdcf5217330cb6aec1da4ae Mon Sep 17 00:00:00 2001 From: AaronK Date: Wed, 15 Jan 2020 17:26:08 +0100 Subject: [PATCH] Update api.py minor typo, can;t help it noticing those. sorry, --- pymisp/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymisp/api.py b/pymisp/api.py index 2a03d6a..27c337a 100644 --- a/pymisp/api.py +++ b/pymisp/api.py @@ -1035,7 +1035,7 @@ class PyMISP: def add_server(self, server: MISPServer, pythonify: bool=False) -> Union[dict, MISPServer]: """Add a server to synchronise with. - Note: You probably fant to use ExpandedPyMISP.get_sync_config and ExpandedPyMISP.import_server instead""" + Note: You probably want to use ExpandedPyMISP.get_sync_config and ExpandedPyMISP.import_server instead""" server = self._prepare_request('POST', f'servers/add', data=server) server = self._check_response(server, expect_json=True) if not (self.global_pythonify or pythonify) or 'errors' in server: