From d75fc90618dcbdae992201d96ef58d3d05bd2b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Endika=20Iglesias=20Garc=C3=ADa?= Date: Fri, 18 Sep 2015 13:24:21 +0200 Subject: [PATCH] [UPDATE] --- base_user_gravatar/__init__.py | 7 +++---- base_user_gravatar/__openerp__.py | 1 + base_user_gravatar/models/__init__.py | 7 +++---- base_user_gravatar/models/res_users.py | 7 +++---- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/base_user_gravatar/__init__.py b/base_user_gravatar/__init__.py index 054c8853d..c2c2899c9 100644 --- a/base_user_gravatar/__init__.py +++ b/base_user_gravatar/__init__.py @@ -1,6 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Endika Iglesias +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/base_user_gravatar/__openerp__.py b/base_user_gravatar/__openerp__.py index 2b0bd4681..1dbb20b1c 100644 --- a/base_user_gravatar/__openerp__.py +++ b/base_user_gravatar/__openerp__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # © 2015 Endika Iglesias # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + { 'name': 'Synchronize Gravatar image', 'version': '1', diff --git a/base_user_gravatar/models/__init__.py b/base_user_gravatar/models/__init__.py index b7b7a6689..1d2e86699 100644 --- a/base_user_gravatar/models/__init__.py +++ b/base_user_gravatar/models/__init__.py @@ -1,6 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Endika Iglesias +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import res_users diff --git a/base_user_gravatar/models/res_users.py b/base_user_gravatar/models/res_users.py index 12c2bdfb5..16b85bfc5 100644 --- a/base_user_gravatar/models/res_users.py +++ b/base_user_gravatar/models/res_users.py @@ -1,7 +1,6 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Endika Iglesias +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, api from openerp.exceptions import Warning