various updates

This commit is contained in:
ge
2023-07-29 14:29:37 +03:00
parent 42ad91fa83
commit 5dd15cf01d
6 changed files with 16 additions and 15 deletions

View File

@ -20,8 +20,9 @@ import logging
import libvirt
from docopt import docopt
sys.path.append('/home/ge/Code/node-agent')
from node_agent import LibvirtSession, VirtualMachine, VMError, VMNotFound
from ..main import LibvirtSession
from ..vm import VirtualMachine
from ..exceptions import VMError, VMNotFound
logger = logging.getLogger(__name__)

View File

@ -16,8 +16,9 @@ import logging
from docopt import docopt
sys.path.append('/home/ge/Code/node-agent')
from node_agent import LibvirtSession, VMNotFound, QemuAgent, QemuAgentError
from ..main import LibvirtSession
from ..vm import QemuAgent
from ..exceptions import QemuAgentError, VMNotFound
logger = logging.getLogger(__name__)