summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/Workspace/DscBuildData.py
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2018-06-25 18:31:27 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2018-06-27 16:33:22 +0800
commit87d2afd07c822e6d5ab12bc8dc0f0bfa31bea679 (patch)
tree241acc21adfdb9ceaa71a7598f4989f87aaf3e30 /BaseTools/Source/Python/Workspace/DscBuildData.py
parent72443dd25014a8b6209895640af36dec33da51e0 (diff)
downloadedk2-87d2afd07c822e6d5ab12bc8dc0f0bfa31bea679.tar.gz
edk2-87d2afd07c822e6d5ab12bc8dc0f0bfa31bea679.tar.bz2
edk2-87d2afd07c822e6d5ab12bc8dc0f0bfa31bea679.zip
BaseTools: Remove the old python "not-equal"
Replace "<>" with "!=" to be compatible with python3. Contributed-under: TianoCore Contribution Agreement 1.1 Cc: Yonghong Zhu <yonghong.zhu@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Workspace/DscBuildData.py')
-rw-r--r--BaseTools/Source/Python/Workspace/DscBuildData.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Workspace/DscBuildData.py b/BaseTools/Source/Python/Workspace/DscBuildData.py
index 7f289c103f..a80c07bc1e 100644
--- a/BaseTools/Source/Python/Workspace/DscBuildData.py
+++ b/BaseTools/Source/Python/Workspace/DscBuildData.py
@@ -2153,7 +2153,7 @@ class DscBuildData(PlatformBuildClassObject):
if DscBuildData.NeedUpdateOutput(OutputValueFile, PcdValueInitExe ,InputValueFile):
Command = PcdValueInitExe + ' -i %s -o %s' % (InputValueFile, OutputValueFile)
returncode, StdOut, StdErr = DscBuildData.ExecuteCommand (Command)
- if returncode <> 0:
+ if returncode != 0:
EdkLogger.warn('Build', COMMAND_FAILURE, 'Can not collect output from command: %s' % Command)
File = open (OutputValueFile, 'r')