summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-10-15 19:22:54 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-10-15 19:22:54 +0300
commitbad5bf1ef5bab02ad09e1e8a736aaf47c75b6602 (patch)
treef2196c9b36f8a83160fd362a1f35c8257de081d7
parent0875e0e8536a6d9567117a5bbd542ebd252129fb (diff)
downloadpylint-bad5bf1ef5bab02ad09e1e8a736aaf47c75b6602.tar.gz
Use the u'' prefix throught text writer.
-rw-r--r--pylint/reporters/ureports/text_writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/reporters/ureports/text_writer.py b/pylint/reporters/ureports/text_writer.py
index 87538b2..c3014bd 100644
--- a/pylint/reporters/ureports/text_writer.py
+++ b/pylint/reporters/ureports/text_writer.py
@@ -84,7 +84,7 @@ class TextWriter(BaseWriter):
cols_width = [size+1 for size in cols_width]
format_strings = u' '.join([u'%%-%ss'] * len(cols_width))
format_strings = format_strings % tuple(cols_width)
- format_strings = format_strings.split(' ')
+ format_strings = format_strings.split(u' ')
table_linesep = u'\n+' + u'+'.join([u'-'*w for w in cols_width]) + u'+\n'
headsep = u'\n+' + u'+'.join([u'='*w for w in cols_width]) + u'+\n'
# FIXME: layout.cheaders