summaryrefslogtreecommitdiffstats
path: root/color.py
diff options
context:
space:
mode:
Diffstat (limited to 'color.py')
-rw-r--r--color.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/color.py b/color.py
index 7fa21d23..5c612acc 100644
--- a/color.py
+++ b/color.py
@@ -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