Skip to content

Commit

Permalink
Fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Feb 4, 2024
1 parent ce6cf9b commit 92844f8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/ue4docker/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 92844f8

Please sign in to comment.