aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/build_wrapper.py
diff options
context:
space:
mode:
authorPatrik Teivonen <patrik.teivonen@qt.io>2022-06-16 14:39:04 +0300
committerPatrik Teivonen <patrik.teivonen@qt.io>2022-07-11 09:48:56 +0000
commit6099b89f35499c60eb0ed4be10e40966326ea678 (patch)
tree754595231cd3439ecc36fdb436dc5840090cf84c /packaging-tools/build_wrapper.py
parent43f6e2ced0724182f5d31e3d1a7c19093626a341 (diff)
PEP8: Fix indentationv6.2.5-lts-packaging
Enable flake8 indentation related checks and fix indentation: - E123 Closing bracket does not match indentation of opening bracket's line - E126 Continuation line over-indented for hanging indent - E128 Continuation line under-indented for visual indent - E125 Continuation line with same indent as next logical line - E117 Over-indented - E124 Closing bracket does not match visual indentation - E127 Continuation line over-indented for visual indent - E111 Indentation is not a multiple of four - E121 Continuation line under-indented for hanging indent Change-Id: I2f25ed06d229b8fdaf94d69fa080dc1178ff3a2d Reviewed-by: Akseli Salovaara <akseli.salovaara@qt.io> Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
Diffstat (limited to 'packaging-tools/build_wrapper.py')
-rw-r--r--packaging-tools/build_wrapper.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/packaging-tools/build_wrapper.py b/packaging-tools/build_wrapper.py
index 70b07d010..da694a0c2 100644
--- a/packaging-tools/build_wrapper.py
+++ b/packaging-tools/build_wrapper.py
@@ -304,13 +304,12 @@ class BuildLog:
def check_call_log(args, execution_path, extra_env=dict(os.environ),
log_filepath=None, log_overwrite=False):
if not log_filepath:
- do_execute_sub_process(args, execution_path,
- extra_env=extra_env)
+ do_execute_sub_process(args, execution_path, extra_env=extra_env)
else:
with BuildLog(log_filepath, log_overwrite) as f:
- do_execute_sub_process(args, execution_path,
- extra_env=extra_env,
- redirect_output=f)
+ do_execute_sub_process(
+ args, execution_path, extra_env=extra_env, redirect_output=f
+ )
def create_qtcreator_source_package(source_path, plugin_name, version, edition, target_path, log_filepath):