From 351157b8f1627fe11b3464ab1954b5d542a66011 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Wed, 18 Jan 2017 09:33:35 +0100 Subject: [PATCH] Minor documentation clarification --- pymisp/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymisp/api.py b/pymisp/api.py index c58d31a..8b86bde 100644 --- a/pymisp/api.py +++ b/pymisp/api.py @@ -1012,7 +1012,7 @@ class PyMISP(object): # ############## Export Attributes in text #################################### def get_all_attributes_txt(self, type_attr): - + """Get all attributes from a specific type as plain text. Only published and IDS flagged attributes are exported.""" session = self.__prepare_session('txt') url = urljoin(self.root_url, 'attributes/text/download/%s' % type_attr) response = session.get(url)