From 45608ee9f8623640df22a7865936d0d03baaeb19 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 26 Aug 2014 06:35:58 +0200 Subject: [PATCH] Add bugs URL to colorama issue --- qutebrowser/utils/log.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qutebrowser/utils/log.py b/qutebrowser/utils/log.py index 3ac0da3e7..b51e0754b 100644 --- a/qutebrowser/utils/log.py +++ b/qutebrowser/utils/log.py @@ -43,7 +43,9 @@ except ImportError: ColoredFormatter = None else: # colorlog calls colorama.init() which we don't want, also it breaks our - # sys.stdout/sys.stderr if they are None. + # sys.stdout/sys.stderr if they are None. Bugreports: + # https://code.google.com/p/colorama/issues/detail?id=61 + # https://github.com/borntyping/python-colorlog/issues/13 if colorama is not None: colorama.deinit()