Fix/ignore all remaining errors.

This commit is contained in:
L. Kärkkäinen
2023-10-25 02:03:44 +01:00
parent 9ae25e6744
commit ec35f5f2c8
5 changed files with 8 additions and 5 deletions

View File

@@ -81,7 +81,7 @@ def _run_shell_command(command: list):
output, error = process.communicate()
return_code = process.returncode
return output.decode("utf-8"), error, return_code
except:
except Exception:
return None, None, -1