diff --git a/bazarr/get_subtitle.py b/bazarr/get_subtitle.py index 2f7bc0838..ac90d6568 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -1430,6 +1430,9 @@ def postprocessing(command, path): if out == "": logging.info( 'BAZARR Post-processing result for file ' + path + ' : Nothing returned from command execution') + elif err: + logging.error( + 'BAZARR Post-processing result for file ' + path + ' : ' + err.replace('\n', ' ').replace('\r', ' ')) else: logging.info('BAZARR Post-processing result for file ' + path + ' : ' + out)