From 070b6ce414d75e6f2ebec1fab6d8aa354e8f8628 Mon Sep 17 00:00:00 2001 From: jaebradley Date: Tue, 30 Jan 2018 13:57:54 -0500 Subject: [PATCH] more complete catch --- openedx/features/learner_analytics/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/features/learner_analytics/views.py b/openedx/features/learner_analytics/views.py index 17a1b8e9f6..5e60b5af50 100644 --- a/openedx/features/learner_analytics/views.py +++ b/openedx/features/learner_analytics/views.py @@ -194,7 +194,7 @@ class LearnerAnalyticsView(View): """ try: context = create_user_profile_context(request, course_key, request.user.id) - except CommentClient500Error: + except Exception as e: # TODO: LEARNER-3854: Clean-up error handling if continuing support. return { 'content_authored': 0,