From 4f765ebb2dc503dc391d453ab25f9e267ded47ab Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Tue, 10 Aug 2021 16:30:39 +0200 Subject: [PATCH] remove debug statement --- api/libretimeapi/models/authentication.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/libretimeapi/models/authentication.py b/api/libretimeapi/models/authentication.py index c0542f7c5..0e5aa8e9c 100644 --- a/api/libretimeapi/models/authentication.py +++ b/api/libretimeapi/models/authentication.py @@ -71,7 +71,6 @@ class User(AbstractBaseUser): self.password = hashlib.md5(password.encode()).hexdigest() def is_staff(self): - print("is_staff") return self.type == ADMIN def check_password(self, password):