Compare commits

..

No commits in common. "master" and "0.0.10" have entirely different histories.

View File

@ -43,6 +43,6 @@ def create_dir(dir_path: str):
def hide_password(cmd: list, password: str) -> list:
cmd = cmd.copy()
for i, arg in enumerate(cmd):
if password in arg:
cmd[i] = arg.replace(password, "********")
if arg == password:
cmd[i] = '********'
return cmd