diff options
Diffstat (limited to 'color.py')
-rw-r--r-- | color.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -110,6 +110,9 @@ class Coloring(object): | |||
110 | def write(self, fmt, *args): | 110 | def write(self, fmt, *args): |
111 | self._out.write(fmt % args) | 111 | self._out.write(fmt % args) |
112 | 112 | ||
113 | def flush(self): | ||
114 | self._out.flush() | ||
115 | |||
113 | def nl(self): | 116 | def nl(self): |
114 | self._out.write('\n') | 117 | self._out.write('\n') |
115 | 118 | ||