Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Feb 18, 2024
1 parent be05c67 commit 5bf5250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydevd_attach_to_process/add_code_to_python_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def run_python_code_linux(pid, python_code, connect_debugger_tracing=False, show
if not target_dll:
libdir = os.path.dirname(os.path.abspath(__file__))
found = [name for name in os.listdir(libdir) if name.startswith('attach_') and name.endswith('.so')]
raise RuntimeError('Could not find .so for attach to process. Available: %s' % (found,))
raise RuntimeError('Could not find .so for attach to process.\nLibdir: %s.\nAvailable: %s' % (libdir, found,))
target_dll_name = os.path.splitext(os.path.basename(target_dll))[0]

# Note: we currently don't support debug builds
Expand Down

0 comments on commit 5bf5250

Please sign in to comment.