mirror of https://github.com/docker/compose.git
parent
c246897af1
commit
9eb3697b40
|
@ -1,5 +1,6 @@
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
import codecs
|
||||||
|
|
||||||
|
|
||||||
class StreamOutputError(Exception):
|
class StreamOutputError(Exception):
|
||||||
|
@ -8,6 +9,7 @@ class StreamOutputError(Exception):
|
||||||
|
|
||||||
def stream_output(output, stream):
|
def stream_output(output, stream):
|
||||||
is_terminal = hasattr(stream, 'fileno') and os.isatty(stream.fileno())
|
is_terminal = hasattr(stream, 'fileno') and os.isatty(stream.fileno())
|
||||||
|
stream = codecs.getwriter('utf-8')(stream)
|
||||||
all_events = []
|
all_events = []
|
||||||
lines = {}
|
lines = {}
|
||||||
diff = 0
|
diff = 0
|
||||||
|
|
Loading…
Reference in New Issue