summaryrefslogtreecommitdiff
path: root/BaseTools/Source/Python/Eot/CodeFragmentCollector.py
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/Source/Python/Eot/CodeFragmentCollector.py')
-rw-r--r--BaseTools/Source/Python/Eot/CodeFragmentCollector.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/BaseTools/Source/Python/Eot/CodeFragmentCollector.py b/BaseTools/Source/Python/Eot/CodeFragmentCollector.py
index b1e77a6..ec1faa6 100644
--- a/BaseTools/Source/Python/Eot/CodeFragmentCollector.py
+++ b/BaseTools/Source/Python/Eot/CodeFragmentCollector.py
@@ -390,10 +390,10 @@ class CodeFragmentCollector:
print('################# ' + self.FileName + '#####################')
print('/****************************************/')
- print('/*************** ASSIGNMENTS ***************/')
+ print('/************** ASSIGNMENTS *************/')
print('/****************************************/')
- for asign in FileProfile.AssignmentExpressionList:
- print(str(asign.StartPos) + asign.Name + asign.Operator + asign.Value)
+ for assign in FileProfile.AssignmentExpressionList:
+ print(str(assign.StartPos) + assign.Name + assign.Operator + assign.Value)
print('/****************************************/')
print('/********* PREPROCESS DIRECTIVES ********/')