From fd8423b73c3588033d44b44ecde0ca7fe6e7e865 Mon Sep 17 00:00:00 2001 From: Joachim Date: Sat, 1 Jan 2022 21:37:53 +0100 Subject: [PATCH] Update annual_summary.py --- bookwyrm/views/annual_summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/views/annual_summary.py b/bookwyrm/views/annual_summary.py index 9f37a6f1f..7e8ff0b13 100644 --- a/bookwyrm/views/annual_summary.py +++ b/bookwyrm/views/annual_summary.py @@ -24,7 +24,7 @@ LAST_DAY = 15 class AnnualSummary(View): """display a summary of the year for the current user""" - def get(self, request, username, year): + def get(self, request, username, year): # pylint: disable=too-many-locals """get response""" user = get_user_from_username(request.user, username) @@ -219,7 +219,7 @@ def get_goal_status(user, year): try: goal = models.AnnualGoal.objects.get(user=user, year=year) - except: + except ObjectDoesNotExist: return None if goal.privacy != "public":