From 06369dc4274bfceeaee967f1f8626f984c41e9fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Setni=C4=8Dka?= <setnicka@seznam.cz> Date: Sun, 7 Mar 2021 19:40:28 +0100 Subject: [PATCH] Round edit: Fix MODateTimeField --- mo/web/org_round.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mo/web/org_round.py b/mo/web/org_round.py index cb4a7a75..acf78043 100644 --- a/mo/web/org_round.py +++ b/mo/web/org_round.py @@ -351,7 +351,7 @@ class MODateTimeField(wtforms.DateTimeField): super().__init__(label, format=format, description=description, **kwargs) def process_data(self, valuelist): - super().process_formdata(valuelist) + super().process_data(valuelist) if self.data is not None: self.data = self.data.astimezone() -- GitLab