From 5094477b6ccda019af965b5a5d4e812b8967f539 Mon Sep 17 00:00:00 2001 From: Simon Hong Date: Thu, 31 Jan 2019 08:42:32 +0900 Subject: [PATCH] Fix wrong python script indentation Change it to multiple of four. --- script/create-signed-installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/create-signed-installer.py b/script/create-signed-installer.py index aaf997512eb..17cc0d8c204 100644 --- a/script/create-signed-installer.py +++ b/script/create-signed-installer.py @@ -27,7 +27,7 @@ def create_signed_installer(root_out_dir, brave_installer_exe, skip_signing, env shutil.copyfile(os.path.join(root_out_dir, 'mini_installer.exe'), installer_file) if not skip_signing: - sign_binary(installer_file) + sign_binary(installer_file) # Copy signed installer to version appended name installer_file_with_version = os.path.join(root_out_dir, brave_installer_exe)