aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/pkg.py
diff options
context:
space:
mode:
Diffstat (limited to 'whatmaps/pkg.py')
-rw-r--r--whatmaps/pkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/whatmaps/pkg.py b/whatmaps/pkg.py
index ab9088d..4290d0b 100644
--- a/whatmaps/pkg.py
+++ b/whatmaps/pkg.py
@@ -63,7 +63,7 @@ class Pkg(object):
output = list_contents.communicate()[0]
if list_contents.returncode:
raise PkgError("Failed to list package contents for '%s'" % self.name)
- self._contents = output.split('\n')
+ self._contents = output.decode('utf-8').split('\n')
return self._contents
@property