diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-23 11:46:50 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-23 11:46:50 +0000 |
commit | 79714906ae765f161969dfddc34adee857be97d6 (patch) | |
tree | edfd2444a65e6abf6964368cafbbba170de48bf7 /BaseTools/Source/Python/Eot/c.py | |
parent | fc5de6be8b50a00b55cb0fdc310f02c057866e01 (diff) | |
download | edk2-platforms-79714906ae765f161969dfddc34adee857be97d6.tar.xz |
Sync EDKII BaseTools to BaseTools project r1940
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10307 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/Python/Eot/c.py')
-rw-r--r-- | BaseTools/Source/Python/Eot/c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Eot/c.py b/BaseTools/Source/Python/Eot/c.py index 71d2b626db..8b11ed378f 100644 --- a/BaseTools/Source/Python/Eot/c.py +++ b/BaseTools/Source/Python/Eot/c.py @@ -361,7 +361,7 @@ def CreateCCodeDB(FileNameList): collector = CodeFragmentCollector.CodeFragmentCollector(FullName)
try:
collector.ParseFile()
- except UnicodeError:
+ except:
ParseErrorFileList.append(FullName)
BaseName = os.path.basename(FullName)
DirName = os.path.dirname(FullName)
|