From d5f3470444cae8b6b0260d89785ed4ef44b39d0f Mon Sep 17 00:00:00 2001 From: Martinez Date: Thu, 20 Oct 2016 16:25:05 +0200 Subject: [PATCH] over.text.Output.print renamed to over.text.Output.write --- over/text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) # --------------------------------------------------