diff --git a/src/ue4docker/build.py b/src/ue4docker/build.py index bd8c054b..a3146dfe 100644 --- a/src/ue4docker/build.py +++ b/src/ue4docker/build.py @@ -111,9 +111,11 @@ def build(): # Print the command-line invocation that triggered this build, masking any supplied passwords args = [ - "*******" - if config.args.password is not None and arg == config.args.password - else arg + ( + "*******" + if config.args.password is not None and arg == config.args.password + else arg + ) for arg in sys.argv ] logger.info("COMMAND-LINE INVOCATION:", False)