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