Projet

Général

Profil

0001-general-always-declare-django-mellon-if-it-s-availab.patch

Frédéric Péters, 12 août 2018 16:46

Télécharger (1016 octets)

Voir les différences:

Subject: [PATCH] general: always declare django-mellon if it's available
 (#25641)

 debian/debian_config.py | 3 ---
 fargo/settings.py       | 1 +
 2 files changed, 1 insertion(+), 3 deletions(-)
debian/debian_config.py
4 4

  
5 5
PROJECT_NAME = 'fargo'
6 6

  
7
# SAML2 authentication
8
INSTALLED_APPS += ('mellon',)
9

  
10 7
#
11 8
# hobotization (multitenant)
12 9
#
fargo/settings.py
125 125
# Authentication settings
126 126
try:
127 127
    import mellon
128
    INSTALLED_APPS = INSTALLED_APPS + ('mellon',)
128 129
except ImportError:
129 130
    mellon = None
130 131

  
131
-