Skip to content

Commit

Permalink
Fixed encoding issue when using Pidcat in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
spatenotte committed Apr 2, 2020
1 parent 216f716 commit 4349b2a
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 @@ -362,4 +362,4 @@ def tag_in_tags_regex(tag, tags):
message = matcher.sub(replace, message)

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

2 comments on commit 4349b2a

@johnjohndoe
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@spatenotte How about a pull request?

@brookmg
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@spatenotte This solved the colour coding problem for me on Win10 using cmder. It would be cool if you open a PR.

Please sign in to comment.