aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/bld_openssl.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/bld_openssl.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/bld_openssl.py')
-rw-r--r--packaging-tools/bld_openssl.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/packaging-tools/bld_openssl.py b/packaging-tools/bld_openssl.py
index c4c3d6f33..74e4e4628 100644
--- a/packaging-tools/bld_openssl.py
+++ b/packaging-tools/bld_openssl.py
@@ -74,9 +74,11 @@ def check_environment():
def setup_argument_parser():
- parser = argparse.ArgumentParser(prog=os.path.basename(sys.argv[0]),
- add_help=True, description='Build openssl from sources',
- formatter_class=argparse.RawTextHelpFormatter)
+ parser = argparse.ArgumentParser(
+ prog=os.path.basename(sys.argv[0]),
+ add_help=True, description='Build openssl from sources',
+ formatter_class=argparse.RawTextHelpFormatter
+ )
parser.add_argument('--sourcedir', help='Source directory', required=True)
parser.add_argument('--installdir', help=r'Target directory (should be on C:\)', required=False, default=r'C:\usr\local\openssl')