From 81d03ab87cfabb5b9d8c7ae1a19bb7f3ff2338ac Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Sun, 17 Jan 2016 14:29:11 +0000 Subject: runtime python3 changes --- bin/vmdebootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/vmdebootstrap b/bin/vmdebootstrap index dc76693..169da37 100755 --- a/bin/vmdebootstrap +++ b/bin/vmdebootstrap @@ -63,7 +63,7 @@ class VmDebootstrap(cliapp.Application): # pylint: disable=too-many-public-meth def add_settings(self): # deliberately long lines for clarity. - default_arch = subprocess.check_output(["dpkg", "--print-architecture"]).strip() + default_arch = subprocess.check_output(["dpkg", "--print-architecture"]).decode('utf-8').strip() self.settings.boolean(['verbose'], 'report what is going on') self.settings.string(['image'], 'put created disk image in FILE', metavar='FILE') -- cgit v1.2.1