summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/AutoGen/BuildEngine.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/AutoGen/BuildEngine.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/AutoGen/BuildEngine.py')
-rw-r--r--BaseTools/Source/Python/AutoGen/BuildEngine.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/AutoGen/BuildEngine.py b/BaseTools/Source/Python/AutoGen/BuildEngine.py
index d4daa30937..cab4c993dc 100644
--- a/BaseTools/Source/Python/AutoGen/BuildEngine.py
+++ b/BaseTools/Source/Python/AutoGen/BuildEngine.py
@@ -362,8 +362,8 @@ class BuildRule:
self.RuleContent[Index] = Line
# find the build_rule_version
- if Line and Line[0] == "#" and Line.find(TAB_BUILD_RULE_VERSION) <> -1:
- if Line.find("=") <> -1 and Line.find("=") < (len(Line) - 1) and (Line[(Line.find("=") + 1):]).split():
+ if Line and Line[0] == "#" and Line.find(TAB_BUILD_RULE_VERSION) != -1:
+ if Line.find("=") != -1 and Line.find("=") < (len(Line) - 1) and (Line[(Line.find("=") + 1):]).split():
self._FileVersion = (Line[(Line.find("=") + 1):]).split()[0]
# skip empty or comment line
if Line == "" or Line[0] == "#":