From 77e0d55f9544cee8e6f268c12f51c8d5de5faddd Mon Sep 17 00:00:00 2001 From: Dan Puttick Date: Fri, 11 Aug 2017 20:02:05 -0400 Subject: [PATCH] Add comment clarifying 7zip command --- filecheck/filecheck.py | 1 + 1 file changed, 1 insertion(+) diff --git a/filecheck/filecheck.py b/filecheck/filecheck.py index 4758003..080fc3b 100644 --- a/filecheck/filecheck.py +++ b/filecheck/filecheck.py @@ -623,6 +623,7 @@ class KittenGroomerFileCheck(KittenGroomerBase): else: tempdir_path = file.make_tempdir() command_str = '{} -p1 x "{}" -o"{}" -bd -aoa' + # -p1=password, x=extract, -o=output location, -bd=no % indicator, -aoa=overwrite existing files unpack_command = command_str.format(SEVENZ_PATH, file.src_path, tempdir_path) self._run_process(unpack_command)