From 890f8726813db5001374e85adce3730e297bed09 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 25 Jan 2019 01:30:05 -0400 Subject: [PATCH] Add keyword argument Signed-off-by: Roberto Rosario --- mayan/apps/mayan_statistics/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/mayan_statistics/models.py b/mayan/apps/mayan_statistics/models.py index 92b913efad..c6090e691e 100644 --- a/mayan/apps/mayan_statistics/models.py +++ b/mayan/apps/mayan_statistics/models.py @@ -25,7 +25,7 @@ class StatisticResult(models.Model): return self.slug def get_data(self): - return json.loads(self.serialize_data) + return json.loads(s=self.serialize_data) def store_data(self, data): self.serialize_data = json.dumps(data)