Skip to content

Commit

Permalink
Fixed color encoding problem causing Issue JakeWharton#178
Browse files Browse the repository at this point in the history
Removed utf-8 encoding step as recommended in JakeWharton#97 (comment). This is backwards-compatible with Python 2.
  • Loading branch information
ozziefallick committed Mar 8, 2022
1 parent 61cd1ee commit 8399b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pidcat.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,4 +359,4 @@ def tag_in_tags_regex(tag, tags):
message = matcher.sub(replace, message)

linebuf += indent_wrap(message)
print(linebuf.encode('utf-8'))
print(linebuf)

0 comments on commit 8399b2d

Please sign in to comment.