Added EXIT_INTERRUPT exit code

EXIT_INTERRUPT when user presses Ctrl-C in console to shutdown bazarr.
This commit is contained in:
JayZed 2024-03-02 16:21:53 -05:00
parent 8ffab0a08e
commit 82e5ed0c54
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ FILE_STOP = 'bazarr.stop'
# bazarr exit codes
EXIT_NORMAL = 0
EXIT_INTERRUPT = -100
EXIT_VALIDATION_ERROR = -101
EXIT_CONFIG_CREATE_ERROR = -102
EXIT_PYTHON_UPGRADE_NEEDED = -103