From: Douglas Bagnall Date: Thu, 19 Apr 2018 04:39:06 +0000 (+1200) Subject: python kcc/graph_utils: don't debug in colour X-Git-Tag: tevent-0.9.37~457 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a3929eee6de3c71647abc581d93e8722bbbbe7c;p=thirdparty%2Fsamba.git python kcc/graph_utils: don't debug in colour this was somewhat useful during the initial development, but is wrong for a library Signed-off-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/kcc/graph_utils.py b/python/samba/kcc/graph_utils.py index 3d362f62543..727b342d4bb 100644 --- a/python/samba/kcc/graph_utils.py +++ b/python/samba/kcc/graph_utils.py @@ -22,8 +22,6 @@ from __future__ import print_function import os import itertools -from samba.kcc.debug import null_debug, PURPLE, MAGENTA, DARK_YELLOW, RED -from samba.kcc.debug import DARK_GREEN, C_NORMAL, GREY from samba.graph import dot_graph @@ -323,9 +321,9 @@ def verify_and_dot(basename, edges, vertices=None, label=None, properties=properties) if errors: title = '%s %s' % (basename, label or '') - debug(("%s%s%s FAILED:" % (MAGENTA, title, RED))) + debug("%s FAILED:" % title) for p, e, doc in errors: - debug(" %18s: %s%s%s" % (p, DARK_YELLOW, e, RED)) + debug(" %18s: %s" % (p, e)) if fatal: raise GraphError("The '%s' graph lacks the following " "properties:\n%s" % @@ -338,6 +336,6 @@ def list_verify_tests(): if k.startswith('verify_graph_'): print(k.replace('verify_graph_', '')) if v.__doc__: - print(' %s%s%s' % (GREY, v.__doc__.rstrip(), C_NORMAL)) + print(' %s' % (v.__doc__.rstrip())) else: print()