From: Guillaume Pellerin Date: Tue, 25 May 2021 14:09:53 +0000 (+0200) Subject: propose another telemeta detection X-Git-Tag: 2.1~66^2^2~82 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=b5d2800fe885ba5422919cc0779d6ff6ed62dc45;p=teleforma.git propose another telemeta detection --- diff --git a/teleforma/models/core.py b/teleforma/models/core.py index 69d38775..2d4eeef5 100755 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -65,6 +65,10 @@ try: except ImportError: pass +HAS_TELEMETA = False +if 'telemeta' in settings.INSTALLED_APPS: + HAS_TELEMETA = True + app_label = 'teleforma'