summaryrefslogtreecommitdiffstats
path: root/meta/files/ext-sdk-prepare.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/files/ext-sdk-prepare.py')
-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
8 8
9def exec_watch(cmd, **options): 9def exec_watch(cmd, **options):
10 """Run program with stdout shown on sys.stdout""" 10 """Run program with stdout shown on sys.stdout"""
11 if isinstance(cmd, basestring) and not "shell" in options: 11 if isinstance(cmd, str) and not "shell" in options:
12 options["shell"] = True 12 options["shell"] = True
13 13
14 process = subprocess.Popen( 14 process = subprocess.Popen(