Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
finesse
pykat
Commits
0e850142
Commit
0e850142
authored
May 03, 2016
by
Daniel Brown
Browse files
Trying out utf8 fixes
parent
fdbed9bc
Pipeline
#948
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pykat/finesse.py
View file @
0e850142
...
@@ -1515,8 +1515,9 @@ class kat(object):
...
@@ -1515,8 +1515,9 @@ class kat(object):
for
line
in
fifo
:
for
line
in
fifo
:
if
(
sys
.
version_info
<
(
3
,
0
)):
#if (sys.version_info < (3, 0)):
line
=
line
.
decode
(
"utf8"
)
# Make sure we're using unicode encoding
line
=
line
.
decode
(
"utf8"
)
# Make sure we're using unicode encoding
v
=
line
.
split
(
u
":"
,
1
)
v
=
line
.
split
(
u
":"
,
1
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment