summaryrefslogtreecommitdiffstats
path: root/build/osx/OSConsX.py
diff options
context:
space:
mode:
authorUwe Klotz <uwe_klotz@web.de>2017-11-15 22:27:38 +0100
committerUwe Klotz <uwe_klotz@web.de>2017-11-16 07:25:36 +0100
commitd8d77509e4d7df8acd9fb6f3ab15812dfc917ace (patch)
tree0de0b37efaaff67db83ac1b9973df7ecba08e1f8 /build/osx/OSConsX.py
parent1ceb53d20b1077b86ff4969fec923221434ab8bd (diff)
Replace basestring with str
Diffstat (limited to 'build/osx/OSConsX.py')
-rw-r--r--build/osx/OSConsX.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/osx/OSConsX.py b/build/osx/OSConsX.py
index 25f9b3ba03..b4f196f3ab 100644
--- a/build/osx/OSConsX.py
+++ b/build/osx/OSConsX.py
@@ -438,7 +438,7 @@ def emit_app(target, source, env):
target = Dir(os.path.join(str(target), path))
if isinstance(i, SCons.Node.FS.Dir):
InstallDir(target, i, env)
- elif isinstance(i, SCons.Node.FS.File) or isinstance(i, basestring):
+ elif isinstance(i, SCons.Node.FS.File) or isinstance(i, str):
env.Install(target, i)
plugins = env['PLUGINS']