From 110d1be6f836f35e59d43bc350bf2cc5b1f9fd14 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Thu, 14 Mar 2019 17:02:38 +0100 Subject: [PATCH] config: Add license headers --- weboob/tools/config/dbmconfig.py | 18 ++++++++++++++++++ weboob/tools/config/extra.py | 20 ++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/weboob/tools/config/dbmconfig.py b/weboob/tools/config/dbmconfig.py index 65aa441cf2..27d24e4596 100644 --- a/weboob/tools/config/dbmconfig.py +++ b/weboob/tools/config/dbmconfig.py @@ -1,5 +1,23 @@ # -*- coding: utf-8 -*- +# Copyright(C) 2016-2019 Edouard Lefebvre du Prey, Laurent Bachelier +# +# This file is part of weboob. +# +# weboob is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# weboob is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with weboob. If not, see . + + import yaml from .iconfig import ConfigError, IConfig diff --git a/weboob/tools/config/extra.py b/weboob/tools/config/extra.py index a74db3d8ff..62960d3cb0 100644 --- a/weboob/tools/config/extra.py +++ b/weboob/tools/config/extra.py @@ -1,3 +1,23 @@ +# -*- coding: utf-8 -*- + +# Copyright(C) 2017-2019 Laurent Bachelier +# +# This file is part of weboob. +# +# weboob is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# weboob is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with weboob. If not, see . + + import multiprocessing import os from datetime import datetime -- GitLab