From: Guillaume Pellerin Date: Fri, 28 Nov 2014 12:01:23 +0000 (+0100) Subject: bugfix X-Git-Tag: 1.5.0rc2~11 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=59810651abf4f9b7f920ae93c17d8aebe3596a2a;p=telemeta.git bugfix --- diff --git a/telemeta/views/collection.py b/telemeta/views/collection.py index eac26610..3a54ed37 100644 --- a/telemeta/views/collection.py +++ b/telemeta/views/collection.py @@ -316,7 +316,7 @@ class CollectionEditView(CollectionViewMixin, UpdateWithInlinesView): return reverse_lazy('telemeta-collection-detail', kwargs={'public_id':self.kwargs['public_id']}) def get_context_data(self, **kwargs): - context = super(CollectionCopyView, self).get_context_data(**kwargs) + context = super(CollectionEditView, self).get_context_data(**kwargs) collection = self.get_object() context['collection'] = collection return context