From e67a0b9350ea94064f2a3167434446d8207f66cf Mon Sep 17 00:00:00 2001 From: dupoxy Date: Mon, 27 Nov 2023 23:42:12 +0100 Subject: [PATCH] Cleanup: Correct path used in example help text for bl_run_operators_event_simulate.py It was using tests/python instead of the tests/utils directory where the script is now hosted. Pull Request: https://projects.blender.org/blender/blender/pulls/113873 --- tests/utils/bl_run_operators_event_simulate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/utils/bl_run_operators_event_simulate.py b/tests/utils/bl_run_operators_event_simulate.py index 144cbb26992..fa5f01c66c7 100644 --- a/tests/utils/bl_run_operators_event_simulate.py +++ b/tests/utils/bl_run_operators_event_simulate.py @@ -33,7 +33,7 @@ While the current set of commands is fairly limited more can be added as needed. To see a list of actions as well as their arguments run: - ./blender.bin --python tests/python/bl_run_operators_event_simulate.py -- --help + ./blender.bin --python tests/utils/bl_run_operators_event_simulate.py -- --help Examples @@ -44,7 +44,7 @@ Rotate in edit-mode examples: ./blender.bin \ --factory-startup \ --enable-event-simulate \ - --python tests/python/bl_run_operators_event_simulate.py \ + --python tests/utils/bl_run_operators_event_simulate.py \ -- \ --actions \ 'area_maximize(ui_type="VIEW_3D")' \ @@ -59,7 +59,7 @@ Sculpt stroke: ./blender.bin \ --factory-startup \ --enable-event-simulate \ - --python tests/python/bl_run_operators_event_simulate.py \ + --python tests/utils/bl_run_operators_event_simulate.py \ -- \ --actions \ 'area_maximize(ui_type="VIEW_3D")' \