From 9b0be97be226dd4952c3e3c5948b53c42324c22a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 6 Jul 2021 16:45:13 +0200 Subject: [PATCH] debian: fix check for installed apps (#51217) --- debian/50imio_townstreet.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/debian/50imio_townstreet.py b/debian/50imio_townstreet.py index 36a3b66..685801a 100644 --- a/debian/50imio_townstreet.py +++ b/debian/50imio_townstreet.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - -if 'combo_plugin_imio_townstreet' in INSTALLED_APPS: +if 'combo_plugin_imio_townstreet' not in INSTALLED_APPS: INSTALLED_APPS += ('combo_plugin_imio_townstreet',) TENANT_APPS += ('combo_plugin_imio_townstreet',)