docker-py
docker-py copied to clipboard
fix: none output type in exec_run(#3172)
fix #3172
This is added with refernce to docker-py docs
Changes:
+ exec_output = tuple(b'' if x is None else x for x in exec_output)
@milas PTAL