diff --git a/delivery_carrier_label_s3/__init__.py b/delivery_carrier_label_s3/__init__.py index bf74548..559c7db 100644 --- a/delivery_carrier_label_s3/__init__.py +++ b/delivery_carrier_label_s3/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# © 2017 Joel Grand-Guillaume (Camptocamp) +# © 2017 Vincent Renaville (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/delivery_carrier_label_s3/__openerp__.py b/delivery_carrier_label_s3/__openerp__.py index 05126c7..2b82ad6 100644 --- a/delivery_carrier_label_s3/__openerp__.py +++ b/delivery_carrier_label_s3/__openerp__.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -# © 2017 Joel Grand-Guillaume (Camptocamp) +# © 2017 Vincent Renaville (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { - 'name': 'Specific - Shipping Label', + 'name': 'S3 - Shipping Label', 'version': '9.0.1.0.0', 'author': 'Camptocamp', 'license': 'AGPL-3', diff --git a/delivery_carrier_label_s3/models/shipping_label.py b/delivery_carrier_label_s3/models/shipping_label.py index 0987306..6b4f272 100644 --- a/delivery_carrier_label_s3/models/shipping_label.py +++ b/delivery_carrier_label_s3/models/shipping_label.py @@ -3,7 +3,8 @@ from openerp import api, fields, models class ShippingLabel(models.Model): - """ Inherit of shipping label to store datas in the right location if S3 activated """ + """ Inherit of shipping label to store datas + in the right location if S3 activated """ _inherit = 'shipping.label'