Skip to content
Snippets Groups Projects
Commit aa4260ca authored by Iustin Pop's avatar Iustin Pop
Browse files

Some tiny style fixes

Reviewed-by: imsnah
parent 0f7f32d9
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ MAX_TAGS_PER_OBJ = 4096
# others
DEFAULT_BRIDGE = "xen-br0"
SYNC_SPEED = 30 * 1024
LOCALHOST_IP_ADDRESS="127.0.0.1"
LOCALHOST_IP_ADDRESS = "127.0.0.1"
TCP_PING_TIMEOUT = 10
GANETI_RUNAS = "root"
......
......@@ -136,7 +136,8 @@ def SSHCall(hostname, user, command, batch=True, ask_key=False):
`utils.RunResult` as for `utils.RunCmd()`
"""
return utils.RunCmd(BuildSSHCmd(hostname, user, command, batch=batch, ask_key=ask_key))
return utils.RunCmd(BuildSSHCmd(hostname, user, command,
batch=batch, ask_key=ask_key))
def CopyFileToNode(node, filename):
......
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