Fix insufficient disk exception formating in steam cmd

This commit is contained in:
Zedifus 2024-02-15 00:27:35 +00:00
parent 110dd2f112
commit dbea214d6f

View File

@ -263,8 +263,8 @@ class SteamCMD:
# Specifically handle the case of exit code 8, insufficient disk space.
if e.returncode == 8:
raise SystemError(
"""SteamCMD was unable to run due to
insufficient disk space. Exit code was 8."""
"SteamCMD was unable to run due to"
"insufficient disk space. Exit code was 8."
) from e
# Handle other non-zero exit codes with a general error message.