From 2b0668c7c8e03900bc3fc0f3d3bd287ecd431f67 Mon Sep 17 00:00:00 2001 From: Pea Tyczynska Date: Tue, 12 Feb 2019 10:41:44 +0000 Subject: [PATCH] Fix dao_update_template_reply_to so it maintains postage in TemplateHistory --- app/dao/templates_dao.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/dao/templates_dao.py b/app/dao/templates_dao.py index 66cbe865a..7861e20e1 100644 --- a/app/dao/templates_dao.py +++ b/app/dao/templates_dao.py @@ -64,6 +64,7 @@ def dao_update_template_reply_to(template_id, reply_to): "content": template.content, "service_id": template.service_id, "subject": template.subject, + "postage": template.postage, "created_by_id": template.created_by_id, "version": template.version, "archived": template.archived,