diff options
author | Yingke Liu <yingke.d.liu@intel.com> | 2014-12-03 08:30:56 +0000 |
---|---|---|
committer | yingke <yingke@Edk2> | 2014-12-03 08:30:56 +0000 |
commit | 8546dfeace040f9f6547cb1b44651a44b8b9670e (patch) | |
tree | eb2c66b3f4ea296caa137aea08d6a77ace66427e | |
parent | 7e0699c06e985c2e5067e6ca93f1c2db863f1760 (diff) | |
download | edk2-platforms-8546dfeace040f9f6547cb1b44651a44b8b9670e.tar.xz |
Fix a regression bug to uni parser.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yingke Liu <yingke.d.liu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16469 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | BaseTools/Source/Python/AutoGen/UniClassObject.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/AutoGen/UniClassObject.py b/BaseTools/Source/Python/AutoGen/UniClassObject.py index 8c3e84876c..aa54f4fbd6 100644 --- a/BaseTools/Source/Python/AutoGen/UniClassObject.py +++ b/BaseTools/Source/Python/AutoGen/UniClassObject.py @@ -340,6 +340,7 @@ class UniFileClassObject(object): Line = Line.replace(u'\\n', CR + LF)
Line = Line.replace(u'\\r', CR)
Line = Line.replace(u'\\t', u' ')
+ Line = Line.replace(u'\t', u' ')
Line = Line.replace(u'\\"', u'"')
Line = Line.replace(u"\\'", u"'")
Line = Line.replace(BACK_SLASH_PLACEHOLDER, u'\\')
|