From fed6dd78649435599106a652784b7c27ceeb3f87 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Wed, 17 Dec 2025 05:41:54 -0500 Subject: [PATCH] GP-0: Fixing wrong output in pyghidra_launcher.py (Closes #8791) --- Ghidra/Features/PyGhidra/support/pyghidra_launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ghidra/Features/PyGhidra/support/pyghidra_launcher.py b/Ghidra/Features/PyGhidra/support/pyghidra_launcher.py index 70a2767d82..32fd92c646 100644 --- a/Ghidra/Features/PyGhidra/support/pyghidra_launcher.py +++ b/Ghidra/Features/PyGhidra/support/pyghidra_launcher.py @@ -240,7 +240,7 @@ def main() -> None: # If in dev mode, launch PyGhidra from the source tree using the development virtual environment if not venv_dir.is_dir(): print('Virtual environment not found!') - print('Run "gradle prepdev" and try again.') + print('Run "gradle prepPyGhidra" and try again.') sys.exit(1) python_cmd = get_venv_exe(venv_dir) print(f'Switching to Ghidra virtual environment: {venv_dir}')