From ea6e3f58d8819c6d03f07625adee6fea63edad0b Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Tue, 16 Sep 2014 11:39:15 +0200 Subject: [PATCH] Move model to root of addon directory --- cron_run_manually/__init__.py | 21 ++++++++++++++++++++- cron_run_manually/{model => }/ir_cron.py | 0 cron_run_manually/model/__init__.py | 1 - 3 files changed, 20 insertions(+), 2 deletions(-) rename cron_run_manually/{model => }/ir_cron.py (100%) delete mode 100644 cron_run_manually/model/__init__.py diff --git a/cron_run_manually/__init__.py b/cron_run_manually/__init__.py index 16e8b082f..e7a731327 100644 --- a/cron_run_manually/__init__.py +++ b/cron_run_manually/__init__.py @@ -1 +1,20 @@ -import model +# -*- coding: utf-8 -*- + +# OpenERP, Open Source Management Solution +# This module copyright (C) 2013 Therp BV () +# Code snippets from openobject-server copyright (C) 2004-2013 OpenERP S.A. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +from . import ir_cron diff --git a/cron_run_manually/model/ir_cron.py b/cron_run_manually/ir_cron.py similarity index 100% rename from cron_run_manually/model/ir_cron.py rename to cron_run_manually/ir_cron.py diff --git a/cron_run_manually/model/__init__.py b/cron_run_manually/model/__init__.py deleted file mode 100644 index 452b62ec4..000000000 --- a/cron_run_manually/model/__init__.py +++ /dev/null @@ -1 +0,0 @@ -import ir_cron