Update yeti.py

remove print
pull/488/head
Sebdraven 2021-04-19 12:12:32 +02:00
parent ef6596637d
commit 53cc15adcd
1 changed files with 0 additions and 3 deletions

View File

@ -102,12 +102,9 @@ class Yeti():
url_object = MISPObject('Url')
obj_relation = self.__get_relation(obj_to_add)
if obj_relation:
print(obj_relation)
print(obj_to_add['value'])
url_object.add_attribute(obj_relation, obj_to_add['value'])
obj_relation = self.__get_relation(self.attribute)
if obj_relation:
print(obj_relation)
url_object.add_attribute(self.__get_relation(self.attribute),
self.attribute['value'])