From fb2e605a1f1979e609af56415ff94c85dfcf54b0 Mon Sep 17 00:00:00 2001 From: snow flurry Date: Tue, 13 Oct 2020 13:23:38 -0700 Subject: [PATCH] Missclear.print: pretend to be print() even harder --- missclear.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/missclear.py b/missclear.py index 75a3531..9f69135 100755 --- a/missclear.py +++ b/missclear.py @@ -111,7 +111,7 @@ class Missclear(object): return False - def print(self, fmt): + def print(self, fmt, file=None): """Extension of print() to provide quiet support""" if not self.quiet: print(fmt)