This commit is contained in:
Kovid Goyal 2020-12-08 09:32:27 +05:30
parent 1ee3c0fdd6
commit 2375f1c295
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -37,7 +37,7 @@ class Stream(object):
self._prints(*args, **kwargs)
def _prints(self, *args, **kwargs):
prints(*args, file=self.stream, **kwargs)
prints(*args, **kwargs, file=self.stream)
class ANSIStream(Stream):