mirror of https://github.com/acidanthera/audk.git
BaseTools: Fix python3.8 SyntaxWarning
Building with python3.8 shows a warning like: SyntaxWarning: invalid escape sequence \( GuidName = re.compile("\(GUID=[-a-fA-F0-9]+") It seems harmless, but it's easy enough to fix: mark the string as raw with the 'r' prefix like is used elsewhere in the file Signed-off-by: Cole Robinson <crobinso@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
70565e6422
commit
eebc135ffb
|
@ -1499,7 +1499,7 @@ class Build():
|
||||||
if self.Fdf:
|
if self.Fdf:
|
||||||
# First get the XIP base address for FV map file.
|
# First get the XIP base address for FV map file.
|
||||||
GuidPattern = re.compile("[-a-fA-F0-9]+")
|
GuidPattern = re.compile("[-a-fA-F0-9]+")
|
||||||
GuidName = re.compile("\(GUID=[-a-fA-F0-9]+")
|
GuidName = re.compile(r"\(GUID=[-a-fA-F0-9]+")
|
||||||
for FvName in Wa.FdfProfile.FvDict:
|
for FvName in Wa.FdfProfile.FvDict:
|
||||||
FvMapBuffer = os.path.join(Wa.FvDir, FvName + '.Fv.map')
|
FvMapBuffer = os.path.join(Wa.FvDir, FvName + '.Fv.map')
|
||||||
if not os.path.exists(FvMapBuffer):
|
if not os.path.exists(FvMapBuffer):
|
||||||
|
|
Loading…
Reference in New Issue