Skip to content

Commit bacd064

Browse files
ligurioTotktonada
andcommitted
python3: fix mode format in chmod() call
Part of #20 Co-authored-by: Alexander Turenko <[email protected]>
1 parent b802dfe commit bacd064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tarantool_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ def deploy(self, silent=True, **kwargs):
754754
def copy_files(self):
755755
if self.script:
756756
shutil.copy(self.script, self.script_dst)
757-
os.chmod(self.script_dst, 0777)
757+
os.chmod(self.script_dst, 0o777)
758758
if self.lua_libs:
759759
for i in self.lua_libs:
760760
source = os.path.join(self.testdir, i)

0 commit comments

Comments
 (0)