X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=blobdiff_plain;f=lib%2Fpython%2Finit.py;fp=lib%2Fpython%2Finit.py;h=f828226c9576264e0fcd931fe7f5056a809982e0;hp=8720caa9bf1120075310a8a54296704b47e7332b;hb=2980425cd19b2c30a252b91c324c16a753280a5e;hpb=4d2806afc5d1cad5fafb0cc7ed9df7d58da666b1 diff --git a/lib/python/init.py b/lib/python/init.py index 8720caa..f828226 100644 --- a/lib/python/init.py +++ b/lib/python/init.py @@ -175,10 +175,11 @@ def init(): def write(self, value): self.stdout.write(value) - def pprint(self, value): - pprint(value, - stream=ColoredFile(self.stdout, - '\033[1;3%sm' % stdout_color)) + if _term_found: + def pprint(self, value): + pprint(value, + stream=ColoredFile(self.stdout, + '\033[1;3%sm' % stdout_color)) def close(self): self.stdout.close() @@ -207,7 +208,8 @@ def init(): try: pager.pprint(value) except: # noqa - pager.stdout = ColoredFile(pager.stdout, '\033[31m') # red + if _term_found: + pager.stdout = ColoredFile(pager.stdout, '\033[31m') # red print_exc(file=pager) pager.close() @@ -216,7 +218,8 @@ def init(): def excepthook(etype, evalue, etraceback): lines = format_exception(etype, evalue, etraceback) pager = Pager() - pager.stdout = ColoredFile(pager.stdout, '\033[31m') # red + if _term_found: + pager.stdout = ColoredFile(pager.stdout, '\033[31m') # red for line in lines: pager.write(line) pager.close()