Skip to content
Snippets Groups Projects
Commit f5f1f42a authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Fix auth.py string conversion error

parent d2c68041
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment