docs: fix typo in MOUNTED_DIRECTORIES guide (#1028)

This commit is contained in:
Kyle McCormick 2024-04-02 09:12:15 -04:00 committed by GitHub
parent 431ddc97fb
commit 24e2f0d1f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ It is quite possible that your package is not automatically recognized and bind-
To do so, you will need to create a :ref:`Tutor plugin <plugin_development_tutorial>` that implements the :py:data:`tutor.hooks.Filters.MOUNTED_DIRECTORIES` filter::
import tutor import hooks
from tutor import hooks
hooks.Filters.MOUNTED_DIRECTORIES.add_item(("openedx", "my-package"))
After you implement and enable that plugin, ``tutor mounts list`` should display your directory among the bind-mounted directories.