From 592345631a042b17a13e4df809fe446605f9e0cd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 31 Oct 2023 21:48:26 +1100 Subject: [PATCH] Docs: improve wording for bpy.app.driver_namespace --- doc/python_api/examples/bpy.app.driver_namespace.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/python_api/examples/bpy.app.driver_namespace.py b/doc/python_api/examples/bpy.app.driver_namespace.py index 0b5b2f6ea4b..ebcfbc5ea42 100644 --- a/doc/python_api/examples/bpy.app.driver_namespace.py +++ b/doc/python_api/examples/bpy.app.driver_namespace.py @@ -1,8 +1,8 @@ """ File Loading & Order of Initialization - Since drivers are evaluated immediately after loading a blend-file, - using ``--python`` to populate name-space often fails to achieve the desired goal because the initial evaluation - will lookup a function that doesn't exist yet, marking the driver as invalid - preventing further evaluation. + Since drivers are evaluated immediately after loading a blend-file, using the ``--python`` command line argument + to populate name-space often fails to achieve the desired goal because the initial evaluation will lookup a function + that doesn't exist yet, marking the driver as invalid - preventing further evaluation. Populating the driver name-space before the blend-file loads also doesn't work since opening a file clears the name-space.