aboutsummaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-05-18 21:52:33 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-02 08:10:03 +0100
commite8cfab060f4ff3c4c16387871354d407910e87aa (patch)
tree59ae168cb8d2c7ef9fa2a1d18f42ea99c540d14c /meta/files
parent25d4d8274bac696a484f83d7f3ada778cf95f4d0 (diff)
downloadopenembedded-core-contrib-e8cfab060f4ff3c4c16387871354d407910e87aa.tar.gz
scripts: Replace basestring -> str for python3
Python 3 doesn't have basestring type as all string are unicode strings. Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Diffstat (limited to 'meta/files')
-rw-r--r--meta/files/ext-sdk-prepare.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/files/ext-sdk-prepare.py b/meta/files/ext-sdk-prepare.py
index 605e2ebefa..bf0d03336b 100644
--- a/meta/files/ext-sdk-prepare.py
+++ b/meta/files/ext-sdk-prepare.py
@@ -8,7 +8,7 @@ import subprocess
def exec_watch(cmd, **options):
"""Run program with stdout shown on sys.stdout"""
- if isinstance(cmd, basestring) and not "shell" in options:
+ if isinstance(cmd, str) and not "shell" in options:
options["shell"] = True
process = subprocess.Popen(