Modify edit_user

This commit is contained in:
Sarina
2024-07-23 01:05:48 +03:30
parent b4b3d22497
commit e304b9f5f8
2 changed files with 43 additions and 21 deletions

View File

@ -41,7 +41,7 @@ def run_cmd(command: list[str]):
Runs a command and returns the output.
Could raise subprocess.CalledProcessError
'''
if DEBUG:
if DEBUG and Command.GET_USER.value not in command:
print(' '.join(command))
result = subprocess.check_output(command, shell=False)
if DEBUG: