Skip to content

Commit

Permalink
[lldb] Fixed SyntaxWarning invalid escape sequence '\l' in lldbtest.py (
Browse files Browse the repository at this point in the history
  • Loading branch information
slydiman committed Apr 30, 2024
1 parent 2aabfc8 commit c106abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/packages/Python/lldbsuite/test/lldbtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@ def buildLibrary(self, sources, lib_name):
os.path.join(os.environ["LLDB_SRC"], "include"),
os.path.join(configuration.lldb_obj_root, "include"),
),
"LD_EXTRAS": "-shared -l%s\liblldb.lib" % lib_dir,
"LD_EXTRAS": "-shared -l%s\\liblldb.lib" % lib_dir,
}
else:
d = {
Expand Down

0 comments on commit c106abf

Please sign in to comment.