From 25df6505bbc1bc32ba0ea55a7faa4531a2adf55b Mon Sep 17 00:00:00 2001 From: root Date: Sun, 2 Nov 2014 14:41:50 +0000 Subject: [PATCH] Improved admin UI performance --- orchestra/apps/orchestration/methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestra/apps/orchestration/methods.py b/orchestra/apps/orchestration/methods.py index b5185fc5..634a08a2 100644 --- a/orchestra/apps/orchestration/methods.py +++ b/orchestra/apps/orchestration/methods.py @@ -55,7 +55,7 @@ def BashSSH(backend, log, server, cmds): # Copy script to remote server sftp = paramiko.SFTPClient.from_transport(transport) sftp.put(path, remote_path) - sftp.chmod(remote_path, '0600') + sftp.chmod(remote_path, 0600) sftp.close() os.remove(path)