From d77a135e18365369f7823088fa46df680b3a201e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 19 Dec 2016 16:37:44 +0000 Subject: lib/oe/utils: Drop python2 compatibility code We've moved to python3, we don't need this compatibility code which just makes the code less readable. (From OE-Core rev: 425afe2484707640ac71194885fdb263e95e9950) Signed-off-by: Richard Purdie --- meta/lib/oe/utils.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index bf440ec960..3de21fc030 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py @@ -1,9 +1,4 @@ -try: - # Python 2 - import commands as cmdstatus -except ImportError: - # Python 3 - import subprocess as cmdstatus +import subprocess def read_file(filename): try: @@ -144,7 +139,7 @@ def packages_filter_out_system(d): return pkgs def getstatusoutput(cmd): - return cmdstatus.getstatusoutput(cmd) + return subprocess.getstatusoutput(cmd) def trim_version(version, num_parts=2): -- cgit 1.2.3-korg