Browse Source

[UPDATE]

pull/254/head
Endika Iglesias García 9 years ago
parent
commit
b6458c506f
  1. 7
      base_user_gravatar/__init__.py
  2. 1
      base_user_gravatar/__openerp__.py
  3. 7
      base_user_gravatar/models/__init__.py
  4. 7
      base_user_gravatar/models/res_users.py

7
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

1
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',

7
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

7
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

Loading…
Cancel
Save