diff --git a/over/text.py b/over/text.py index 3560c7c..43d3f36 100644 --- a/over/text.py +++ b/over/text.py @@ -330,7 +330,7 @@ class Output: self.indent = indent self.stream = stream - def print(self, text, tag=None, format=None, colors=None, end=None): + def write(self, text, tag=None, format=None, colors=None, end=None): """ @while displaying text """ @@ -356,7 +356,7 @@ class Output: self.stream.flush() def __call__(self, *args, **kwargs): - self.print(*args, **kwargs) + self.write(*args, **kwargs) # --------------------------------------------------