summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/terminal.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/terminal.py')
-rw-r--r--meta/lib/oe/terminal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index dc25d14ff6..7f4458ea33 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -246,7 +246,7 @@ def check_terminal_version(terminalName):
246 newenv["LANG"] = "C" 246 newenv["LANG"] = "C"
247 p = sub.Popen(['sh', '-c', cmdversion], stdout=sub.PIPE, stderr=sub.PIPE, env=newenv) 247 p = sub.Popen(['sh', '-c', cmdversion], stdout=sub.PIPE, stderr=sub.PIPE, env=newenv)
248 out, err = p.communicate() 248 out, err = p.communicate()
249 ver_info = out.rstrip().split('\n') 249 ver_info = out.decode().rstrip().split('\n')
250 except OSError as exc: 250 except OSError as exc:
251 import errno 251 import errno
252 if exc.errno == errno.ENOENT: 252 if exc.errno == errno.ENOENT: