From f829dd5d11c115387ff330f9c1761df17545fc8c Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Wed, 29 Dec 2021 18:35:27 +0100 Subject: [PATCH] fix warning text --- docs/extend/plugins/integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extend/plugins/integration.md b/docs/extend/plugins/integration.md index b0d9aec..fb109d8 100644 --- a/docs/extend/plugins/integration.md +++ b/docs/extend/plugins/integration.md @@ -112,4 +112,4 @@ The optional class constants `NAVIGATION_TAB_NAME` and `NAVIGATION_TAB_ICON` can If this mixin is added to a plugin the directory the plugin class is defined in is added to InvenTrees `INSTALLED_APPS`. !!! warning "Danger Zone" - Only use this plugin if you have an understanding of djangos [app system](https://docs.djangoproject.com/en/stable/ref/applications). Plugins with this mixin are deeply integrated into InvenTree and can cause difficult to reproduce or long-running errors. Use the built-in testing functions of django to make sure your code does not cause unwanted behaviour in InvenTree. + Only use this mixin if you have an understanding of djangos [app system](https://docs.djangoproject.com/en/stable/ref/applications). Plugins with this mixin are deeply integrated into InvenTree and can cause difficult to reproduce or long-running errors. Use the built-in testing functions of django to make sure your code does not cause unwanted behaviour in InvenTree before releasing.