Removed debug output

This commit is contained in:
Anton Hvornum 2023-02-23 08:50:05 +01:00
parent d23c4acb03
commit 17eb9176ca
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 1 additions and 1 deletions

View File

@ -490,7 +490,7 @@ def find_partition_by_mountpoint(block_devices :List[BlockDevice], relative_moun
def partprobe(path :str = '') -> bool:
try:
if SysCommand(f'bash -c "partprobe {path}"', peak_output=True).exit_code == 0:
if SysCommand(f'bash -c "partprobe {path}"').exit_code == 0:
return True
except SysCallError:
pass