From a8ae00d338dc7b91b82492b062112a3d403347cb Mon Sep 17 00:00:00 2001 From: Alessio Gerace Date: Tue, 14 Jul 2015 11:25:24 +0200 Subject: [PATCH] [FIX] module --- auto_backup/__init__.py | 24 ++++++++++++++++++++++++ auto_backup/__openerp__.py | 2 +- auto_backup/model/__init__.py | 23 +++++++++++++++++++++++ 3 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 auto_backup/__init__.py create mode 100644 auto_backup/model/__init__.py diff --git a/auto_backup/__init__.py b/auto_backup/__init__.py new file mode 100644 index 000000000..b90f7bb08 --- /dev/null +++ b/auto_backup/__init__.py @@ -0,0 +1,24 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# $Id$ +# Copyright (C) 2015 Agile Business Group +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +from . import model +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/auto_backup/__openerp__.py b/auto_backup/__openerp__.py index a72d57c43..64f232256 100644 --- a/auto_backup/__openerp__.py +++ b/auto_backup/__openerp__.py @@ -4,7 +4,7 @@ # OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ -# +# Copyright (C) 2015 Agile Business Group # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/auto_backup/model/__init__.py b/auto_backup/model/__init__.py new file mode 100644 index 000000000..9fa9047c2 --- /dev/null +++ b/auto_backup/model/__init__.py @@ -0,0 +1,23 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +import backup_scheduler