Projet

Général

Profil

0002-fix-typo-to-be-rebased.patch

Benjamin Dauvergne, 24 mai 2018 10:42

Télécharger (891 octets)

Voir les différences:

Subject: [PATCH 2/8] fix typo (to be rebased)

 hobo/contrib/ozwillo/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
hobo/contrib/ozwillo/views.py
92 92
    try:
93 93
        instance = OzwilloInstance.objects.create(
94 94
            external_ozwillo_id=data['instance_id'],
95
            state=OzwilloInstance.NEW,
95
            state=OzwilloInstance.STATE_NEW,
96 96
            domain_slug=org_name,
97 97
            # deploy_data is a TextField containing JSON
98 98
            deploy_data=json.dumps(data, indent=4))
99
-