diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py index d10f41a808..e60de35833 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -229,7 +229,6 @@ class PluginAppConfig(AppConfig): elif a.app_name == 'plugin': integ_urls = get_integration_urls() urlpatterns[index] = url(f'^{settings.PLUGIN_URL}/', include((integ_urls, 'plugin'))) - print('done') def _reload_apps(self, populate: bool = False): if populate: diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index 06606fd5d6..4aebcd6082 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -58,11 +58,9 @@ class PluginConfig(models.Model): app = apps.get_app_config('plugin') if self.active is False and self.__org_active is True: - print('deactivated') app.reload_plugins() elif self.active is True and self.__org_active is False: - print('activated') app.reload_plugins() return ret