Skip to content

Commit 2759f73

Browse files
authored
[lldb] fix get_python_module_path indentation (#11649)
1 parent bdd02c8 commit 2759f73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/bindings/python/prepare_binding_python.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,8 @@ def get_python_module_path(options):
382382
module_path = get_python_lib(True, False, options.prefix)
383383
else:
384384
module_path = get_python_lib(True, False)
385-
return os.path.normcase(os.path.join(module_path, "lldb"))
385+
386+
return os.path.normcase(os.path.join(module_path, "lldb"))
386387

387388

388389
def main(options):

0 commit comments

Comments
 (0)