diff --git a/CHANGELOG.md b/CHANGELOG.md index c38846b..aa798ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +Version 2.1.1 *(2022-03-08)* +---------------------------- + + * Fix: Iteration calls are now compatible with Python 3. + * Fix: Color encoding is now compatible with Python 3. + + Version 2.1.0 *(2016-09-07)* ---------------------------- diff --git a/pidcat.py b/pidcat.py index 6a23786..b671091 100755 --- a/pidcat.py +++ b/pidcat.py @@ -27,7 +27,7 @@ import subprocess from subprocess import PIPE -__version__ = '2.1.0' +__version__ = '2.1.1' LOG_LEVELS = 'VDIWEF' LOG_LEVELS_MAP = dict([(LOG_LEVELS[i], i) for i in range(len(LOG_LEVELS))]) @@ -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)