mirror of https://github.com/acidanthera/audk.git
BaseTools: Don't need to add extra quotes when UI string from file
when the UI string is read from files, we don't need to add the extra quotes. Otherwise, it will cause UI name has this extra quotes. Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Bin Wang <binx.a.wang@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
566368148c
commit
1e892df686
|
@ -1,7 +1,7 @@
|
|||
## @file
|
||||
# process UI section generation
|
||||
#
|
||||
# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
|
@ -66,7 +66,6 @@ class UiSection (UiSectionClassObject):
|
|||
FileNameStr = GenFdsGlobalVariable.MacroExtend(FileNameStr, Dict)
|
||||
FileObj = open(FileNameStr, 'r')
|
||||
NameString = FileObj.read()
|
||||
NameString = '\"' + NameString + "\""
|
||||
FileObj.close()
|
||||
else:
|
||||
NameString = ''
|
||||
|
|
Loading…
Reference in New Issue