Removed typo

This commit is contained in:
Kevin Veen-Birkenbach 2022-12-23 15:48:10 +01:00
parent f86727365d
commit 367d16496a
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ def bash(command):
output.append(line.decode("utf-8"))
if process.wait() > bool(0):
print(command, out, err)
raise Exception("Error is greater then 0")
raise Exception("Exitcode is greater then 0")
return output