mirror of https://github.com/MISP/misp-modules
added strip to remove potential whitespace
parent
b60d142d32
commit
b188d2da4e
|
@ -39,7 +39,7 @@ class TruSTARParser:
|
|||
CLIENT_VERSION = "{}".format(pymisp.__version__)
|
||||
|
||||
def __init__(self, attribute, config):
|
||||
config['enclave_ids'] = config.get('enclave_ids', "").split(',')
|
||||
config['enclave_ids'] = config.get('enclave_ids', "").strip().split(',')
|
||||
config['client_metatag'] = self.CLIENT_METATAG
|
||||
config['client_version'] = self.CLIENT_VERSION
|
||||
self.ts_client = TruStar(config=config)
|
||||
|
|
Loading…
Reference in New Issue