summaryrefslogtreecommitdiff
path: root/pylint/reporters
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-18 23:28:24 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-18 23:28:24 +0300
commitc1ffe31653d24c6bf05bdfa1b11cf055491c4822 (patch)
treea58a9daa2864a97b1ff2bc20bc41830b1efc0d39 /pylint/reporters
parent1e6c856095451396d8f0edaefe509df085e8c900 (diff)
downloadpylint-c1ffe31653d24c6bf05bdfa1b11cf055491c4822.tar.gz
Fix pylint warnings for the code imported from logilab-common.
Diffstat (limited to 'pylint/reporters')
-rw-r--r--pylint/reporters/text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/reporters/text.py b/pylint/reporters/text.py
index b66af3c..22b0609 100644
--- a/pylint/reporters/text.py
+++ b/pylint/reporters/text.py
@@ -75,7 +75,7 @@ def _get_ansi_code(color=None, style=None):
"""
ansi_code = []
if style:
- style_attrs = utils.splitstrip(style)
+ style_attrs = utils._splitstrip(style)
for effect in style_attrs:
ansi_code.append(ANSI_STYLES[effect])
if color: