diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/terminal.py | 2 |
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: |