From 0685348b221f2fdbfe31df55dad4696372ca3983 Mon Sep 17 00:00:00 2001 From: Benjamin <benjamin@le-filament.com> Date: Thu, 29 Apr 2021 14:24:06 +0200 Subject: [PATCH] [update] add re to main for string manipulation in config --- __manifest__.py | 2 +- controllers/main.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/__manifest__.py b/__manifest__.py index 1646663..e2cf56b 100755 --- a/__manifest__.py +++ b/__manifest__.py @@ -4,7 +4,7 @@ 'name': 'Export Journal Tool', 'summary': 'Export des journaux', 'author': 'LE FILAMENT', - 'version': '12.0.1.1.0', + 'version': '12.0.1.2.0', 'license': "AGPL-3", 'depends': ['account'], 'qweb': [], diff --git a/controllers/main.py b/controllers/main.py index 726ee23..a42831b 100755 --- a/controllers/main.py +++ b/controllers/main.py @@ -1,6 +1,7 @@ # Copyright 2020 Le Filament (<http://www.le-filament.com>) # License AGPL-3 or later (http://www.gnu.org/licenses/agpl.html). +import re import csv from datetime import date, datetime from io import BytesIO, StringIO -- GitLab