mirror of
https://github.com/camptocamp/odoo-cloud-platform.git
synced 2026-06-24 02:08:36 +00:00
Change CI to GitHub actions
Use copier template from oca/oca-addons-repo-template Target Python3.7 Adapt modules to fix few issues
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
'keystoneauth1',
|
||||
],
|
||||
},
|
||||
'website': 'https://www.camptocamp.com',
|
||||
'website': 'https://github.com/camptocamp/odoo-cloud-platform',
|
||||
'data': [],
|
||||
'installable': True,
|
||||
}
|
||||
|
||||
@@ -77,9 +77,9 @@ class IrAttachment(models.Model):
|
||||
_inherit = 'ir.attachment'
|
||||
|
||||
def _get_stores(self):
|
||||
l = ['swift']
|
||||
l += super(IrAttachment, self)._get_stores()
|
||||
return l
|
||||
stores = ['swift']
|
||||
stores += super(IrAttachment, self)._get_stores()
|
||||
return stores
|
||||
|
||||
@api.model
|
||||
def _get_swift_connection(self):
|
||||
|
||||
Reference in New Issue
Block a user