From f66b5a58c8ab25f6a9e641ce8e63c1238f975609 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sat, 12 Feb 2022 15:10:18 +0100 Subject: [PATCH] Added debug information --- archinstall/lib/general.py | 1 - 1 file changed, 1 deletion(-) diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py index 5edac536..b5ae77a4 100644 --- a/archinstall/lib/general.py +++ b/archinstall/lib/general.py @@ -541,7 +541,6 @@ def reboot(): def pid_exists(pid: int) -> bool: - print(f'Checking if pid {pid} exists.') try: return any(subprocess.check_output(['/usr/bin/ps', '--no-headers', '-o', 'pid', '-p', str(pid)]).strip()) except subprocess.CalledProcessError: