diff --git a/pandora_server/extras/pandoraPlugintools/README.md b/pandora_server/extras/pandoraPlugintools/README.md index df7503d021..735fcc78fd 100644 --- a/pandora_server/extras/pandoraPlugintools/README.md +++ b/pandora_server/extras/pandoraPlugintools/README.md @@ -59,9 +59,8 @@ xml_file = ppt.write_xml(xml_content, agent["agent_name"]) ppt.transfer_xml( xml_file, transfer_mode="tentacle", - tentacle_address="192.168.1.20", + tentacle_ip="192.168.1.20", tentacle_port="41121", - temporal="/tmp" ) ``` diff --git a/pandora_server/extras/pandoraPlugintools/agents.py b/pandora_server/extras/pandoraPlugintools/agents.py index 610b3f6587..a50db3754a 100644 --- a/pandora_server/extras/pandoraPlugintools/agents.py +++ b/pandora_server/extras/pandoraPlugintools/agents.py @@ -1,6 +1,3 @@ -from datetime import datetime -from subprocess import * -import hashlib import sys import os from .general import debug_dict,now,set_dict_key_value,generate_md5 diff --git a/pandora_server/extras/pandoraPlugintools/general.py b/pandora_server/extras/pandoraPlugintools/general.py index aa3a7e65ff..8c4354b908 100644 --- a/pandora_server/extras/pandoraPlugintools/general.py +++ b/pandora_server/extras/pandoraPlugintools/general.py @@ -1,5 +1,4 @@ import sys -import os import json from datetime import datetime import hashlib