From 4b396cd7d747c7ac6ddf8b8d693aab19d9c13af4 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Fri, 14 Feb 2020 11:41:49 +0100 Subject: [PATCH] remove stray debug print --- src/wishlist/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wishlist/models.py b/src/wishlist/models.py index bbf0dd5b..6c468376 100644 --- a/src/wishlist/models.py +++ b/src/wishlist/models.py @@ -52,7 +52,6 @@ class Wish(CampRelatedModel): return self.name def save(self, **kwargs): - print("inside save()") if not self.slug: self.slug = slugify(self.name) if not self.slug: