From 83f46b6cdacb26aee0287f831685aaea73731d5b Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sun, 10 Oct 2021 12:01:21 +1100 Subject: [PATCH] remove print() statement Whoops accidentally left this behind from manual troubleshooting --- bookwyrm/models/list.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bookwyrm/models/list.py b/bookwyrm/models/list.py index 202c830c1..b06cdef8c 100644 --- a/bookwyrm/models/list.py +++ b/bookwyrm/models/list.py @@ -62,7 +62,6 @@ class List(OrderedCollectionMixin, BookWyrmModel): def raise_not_editable(self, viewer): """the associated user OR the list owner can edit""" - print("raising not editable") if self.user == viewer: return # group members can edit items in group lists