X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=plomtask%2Fhttp.py;h=98bb49f2d18c4789521c488195d9471375d77963;hb=2ca0045683f74254fd0e248c2567fa2efa358c08;hp=2ecfcaa3734325951bad368d91e7aaeaafb836fe;hpb=e60bbd142b5026748ee2181ca6758afef6202fb4;p=plomtask diff --git a/plomtask/http.py b/plomtask/http.py index 2ecfcaa..98bb49f 100644 --- a/plomtask/http.py +++ b/plomtask/http.py @@ -248,7 +248,7 @@ class TaskHandler(BaseHTTPRequestHandler): todo.set_enables(self.conn, self.form_data.get_all_int('enables')) todo.set_disables(self.conn, self.form_data.get_all_int('disables')) todo.is_done = len(self.form_data.get_all_str('done')) > 0 - todo.comment = self.form_data.get_str('comment') + todo.comment = self.form_data.get_str('comment', ignore_strict=True) todo.save(self.conn) for condition in todo.enables: condition.save(self.conn)