Skip to content
Snippets Groups Projects
Commit f38611c9 authored by Thibault VINCENT's avatar Thibault VINCENT
Browse files

execute typo

parent f5c9793b
No related branches found
No related tags found
No related merge requests found
......@@ -242,13 +242,13 @@ class NodeHandler(RpcHandler):
@pure
def execute_command(self, command):
'''
Excecutes the given command on the local hypervisor
Executes the given command on the local hypervisor
:param command: the command to excecute as it would be typed on a shell
:param command: the command to execute as it would be typed on a shell
prompt
:type command: :class:`str`
'''
result = self.hv_handle.local_excecute(command)
result = self.hv_handle.local_execute(command)
return result
......
......@@ -92,7 +92,7 @@ class KvmHypervisor(LibvirtHypervisor):
raise VMError('Virtual machine %s not found: ' % name)
def local_excecute(self, command):
def local_execute(self, command):
'''
Excecutes the command given in command on the local host
Returns a tuple with (stdout, stderr) from the process that has
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment