From 6409b034a932d06530345b6f0d0d4c9a323aa68b Mon Sep 17 00:00:00 2001
From: Robin Sonnabend <robin@fsmpi.rwth-aachen.de>
Date: Sun, 4 Mar 2018 16:08:54 +0100
Subject: [PATCH] Fix auth.py string conversion error

---
 auth.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/auth.py b/auth.py
index 51aba9e..3241a71 100644
--- a/auth.py
+++ b/auth.py
@@ -19,7 +19,8 @@ class User:
     def summarize(self):
         return ":".join((
             self.username, ",".join(self.groups),
-            str(self.timestamp.timestamp()), self.obsolete, self.permanent))
+            str(self.timestamp.timestamp()), str(self.obsolete),
+            str(self.permanent)))
 
     @staticmethod
     def from_summary(summary):
-- 
GitLab