summaryrefslogtreecommitdiff
path: root/api.py
diff options
context:
space:
mode:
Diffstat (limited to 'api.py')
-rwxr-xr-xapi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/api.py b/api.py
index 4904244..6f6a6c7 100755
--- a/api.py
+++ b/api.py
@@ -366,7 +366,7 @@ class Deployer(API):
def _publish_via_ssh(self, filename, ssh_target):
logging.info('Copying %s to %s', filename, ssh_target)
- os.chmod(filename, 0444)
+ os.chmod(filename, 0o444)
argv = [
'scp', '-q', filename, ssh_target,
]