Got exception when bash command output unicode to stdout. In `airflow/operators/bash_operator.py` ``` for line in iter(sp.stdout.readline, b''): line = line.decode().strip() logging.info(line) ```