diff options
author | Jan Alexander Steffens (heftig) <jsteffens@make.tv> | 2019-11-11 12:41:23 +0100 |
---|---|---|
committer | Jan Alexander Steffens (heftig) <jsteffens@make.tv> | 2019-11-11 12:41:44 +0100 |
commit | 49fea2520f5c672493a91be8c0e3bb4ef6de6e27 (patch) | |
tree | 0a87f7903ce4f986880e0f34d76c16f1449a64aa /gst-env.py | |
parent | 2e6bd1ca8d4e09fa7c5f5c8a39ce110d6e9f290c (diff) | |
download | gstreamer-49fea2520f5c672493a91be8c0e3bb4ef6de6e27.tar.gz |
python: Avoid using 'is' to compare strings
This is the wrong operator to use, which only seems to work because
`os.name` and `'nt'` happen to be the same object. Python 3.8 also
produces a `SyntaxWarning` when encountering this pattern.
Diffstat (limited to 'gst-env.py')
-rwxr-xr-x | gst-env.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst-env.py b/gst-env.py index d368a21b0a..ad00cd8546 100755 --- a/gst-env.py +++ b/gst-env.py @@ -56,7 +56,7 @@ def prepend_env_var(env, var, value, sysroot): if value.startswith(sysroot): value = value[len(sysroot):] # Try not to exceed maximum length limits for env vars on Windows - if os.name is 'nt': + if os.name == 'nt': value = win32_get_short_path_name(value) env_val = env.get(var, '') val = os.pathsep + value + os.pathsep @@ -144,7 +144,7 @@ def get_subprocess_env(options, gst_version): env["GST_PTP_HELPER"] = os.path.normpath( "%s/subprojects/gstreamer/libs/gst/helpers/gst-ptp-helper" % options.builddir) - if os.name is 'nt': + if os.name == 'nt': lib_path_envvar = 'PATH' elif platform.system() == 'Darwin': lib_path_envvar = 'DYLD_LIBRARY_PATH' @@ -361,7 +361,7 @@ if __name__ == "__main__": gst_version += '-' + os.path.basename(options.wine) if not args: - if os.name is 'nt': + if os.name == 'nt': shell = get_windows_shell() if shell == 'powershell.exe': args = ['powershell.exe'] |