diff options
Diffstat (limited to 'BaseTools/Source/Python/Common/DecClassObject.py')
-rw-r--r-- | BaseTools/Source/Python/Common/DecClassObject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Common/DecClassObject.py b/BaseTools/Source/Python/Common/DecClassObject.py index d7c70a7336..835dbd5935 100644 --- a/BaseTools/Source/Python/Common/DecClassObject.py +++ b/BaseTools/Source/Python/Common/DecClassObject.py @@ -116,7 +116,7 @@ class Dec(DecObject): #
# Load Dec file if filename is not None
#
- if Filename != None:
+ if Filename is not None:
self.LoadDecFile(Filename)
#
|