From 3cb0121474f314d2617c19f79fa99991dd011c51 Mon Sep 17 00:00:00 2001 From: mlutter Date: Tue, 14 Mar 2023 14:28:31 -0400 Subject: [PATCH] fix typo --- python/mujoco/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/mujoco/__init__.py b/python/mujoco/__init__.py index e94be569..baf67756 100644 --- a/python/mujoco/__init__.py +++ b/python/mujoco/__init__.py @@ -61,8 +61,8 @@ def _load_all_bundled_plugins(): pass else: - raise ValueError(f"Trying to load the plugin {os.path.join(directory, filename)}, " - "which is not a shared library.") + raise ValueError(f"Trying to load the plugin {os.path.join(directory, filename)} " + "that is not a shared library.") _load_all_bundled_plugins()