X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/819fc766fd18514fdd45cf514efdd91739210e62..1a56dac4a9131e6c453ef496fe8a496969e8ff0d:/philo/contrib/julian/models.py diff --git a/philo/contrib/julian/models.py b/philo/contrib/julian/models.py index e4e78ba..fd0a7c5 100644 --- a/philo/contrib/julian/models.py +++ b/philo/contrib/julian/models.py @@ -334,7 +334,7 @@ class CalendarView(FeedView): def get_events_by_location(self, request, app_label, model, pk, extra_context=None): try: - ct = ContentType.objects.get(app_label=app_label, model=model) + ct = ContentType.objects.get_by_natural_key(app_label, model) location = ct.model_class()._default_manager.get(pk=pk) except ObjectDoesNotExist: raise Http404