Skip to content

Commit

Permalink
Fixing unicode handling for bashop
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 3, 2015
1 parent 74b8c2c commit ba6c783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/operators/bash_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def execute(self, context):
logging.info("Output:")
line = ''
for line in iter(sp.stdout.readline, b''):
logging.info(line.strip())
logging.info("{}".format(line.strip()))
sp.wait()
logging.info("Command exited with "
"return code {0}".format(sp.returncode))
Expand Down

0 comments on commit ba6c783

Please sign in to comment.