X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/4017ab99e0dededcaef60839c93e12dc5885bd5d..2c37e29bb427694643b92fbada6eb0986a815950:/tasklib/task.py diff --git a/tasklib/task.py b/tasklib/task.py index 280f961..9246e1f 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -252,7 +252,7 @@ class TaskWarrior(object): logger.debug(' '.join(command_args)) p = subprocess.Popen(command_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - stdout, stderr = p.communicate() + stdout, stderr = [x.decode() for x in p.communicate()] if p.returncode: if stderr.strip(): error_msg = stderr.strip().splitlines()[-1]