From b5d8ec4e7034dc0a11c55edace9848bf8ed8e3e7 Mon Sep 17 00:00:00 2001
From: Nils G <nils.gondermann@ruhr-uni-bochum.de>
Date: Thu, 23 Apr 2020 12:32:04 +0200
Subject: [PATCH] Removed debug print

---
 controllers/game.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/controllers/game.py b/controllers/game.py
index 9ad5559..6459a99 100644
--- a/controllers/game.py
+++ b/controllers/game.py
@@ -91,7 +91,6 @@ def roles():
 
     #Update roles and prompts on server
     for uid in change:
-        print(change[uid])
         db(db.Player.id == uid).update(role=change[uid]["role"], prompts=JSON_TO_B64(change[uid]["prompts"]))
 
     #Update roles on clients
-- 
GitLab