Projet

Général

Profil

0001-calendar-use-id-as-stable-key-for-chrono-agendas-192.patch

Frédéric Péters, 07 octobre 2017 11:52

Télécharger (842 octets)

Voir les différences:

Subject: [PATCH] calendar: use "id" as stable key for chrono agendas (#19267)

 combo/apps/calendar/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/calendar/utils.py
59 59
        return references
60 60
    for agenda in result.get('data'):
61 61
        references.append((
62
            '%s:%s' % (chrono['slug'], agenda['slug']), agenda['text']))
62
            '%s:%s' % (chrono['slug'], agenda['id']), agenda['text']))
63 63
    return references
64 64

  
65 65

  
66
-