Skip to content

Commit

Permalink
missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
silil committed Nov 14, 2023
1 parent 014b8fb commit 7b8d5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/triage/component/architect/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def generate_gzip(self, path, matrix_uuid):
path (string): _description_
matrix_uuid (string): _description_
"""
cmd_line = "gzip -k" + path + "/" + matrix_uuid + ".csv"
cmd_line = "gzip -k " + path + "/" + matrix_uuid + ".csv"
logger.debug(f"Generating gzip of full matrix on cmd line with command: {cmd_line}")
subprocess.run(cmd_line, shell=True)
logger.debug(f"Full matrix {matrix_uuid} compressed and saved!")
Expand Down

0 comments on commit 7b8d5b1

Please sign in to comment.