From 7e838a0c18f3ad0f574e3bd7c5c4949701264f01 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Wed, 24 Feb 2016 09:18:59 +0100 Subject: The usual 2to3 string encoding madness --- whatmaps/systemd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'whatmaps/systemd.py') diff --git a/whatmaps/systemd.py b/whatmaps/systemd.py index ef15a26..9bc03b1 100644 --- a/whatmaps/systemd.py +++ b/whatmaps/systemd.py @@ -38,7 +38,7 @@ class Systemd(object): if systemctl_status.returncode: return None else: - parts = output.split() + parts = output.decode('utf-8').split() if parts[0].endswith('.service'): return parts[0] elif parts[1].endswith('.service'): -- cgit v1.2.3