Skip to content

Commit c106abf

Browse files
authored
[lldb] Fixed SyntaxWarning invalid escape sequence '\l' in lldbtest.py (llvm#90609)
1 parent 2aabfc8 commit c106abf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/lldbtest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ def buildLibrary(self, sources, lib_name):
15261526
os.path.join(os.environ["LLDB_SRC"], "include"),
15271527
os.path.join(configuration.lldb_obj_root, "include"),
15281528
),
1529-
"LD_EXTRAS": "-shared -l%s\liblldb.lib" % lib_dir,
1529+
"LD_EXTRAS": "-shared -l%s\\liblldb.lib" % lib_dir,
15301530
}
15311531
else:
15321532
d = {

0 commit comments

Comments
 (0)