Skip to content

Commit 119217f

Browse files
committed
Update for Odoo 8.0 testing
1 parent 4d83cc4 commit 119217f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

__manifest__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
'name': 'Records Management',
3-
'version': '18.0.1.0.0',
3+
'version': '18.0.1.0',
44
'summary': 'Manage records efficiently within Odoo. Centralized storage, search, permissions, and audit trails.',
55
'description': """
66
Records Management
@@ -11,7 +11,7 @@
1111
'author': 'John Cope',
1212
'website': 'https://suncityshred.com',
1313
'category': 'Tools',
14-
'license': 'OPL-1',
14+
'license': 'LGPL-3',
1515
'icon': 'records_management/static/description/records_management_icon.png',
1616
'depends': [
1717
'base',

addons/delivery/delivery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get_price(self, cr, uid, ids, field_name, arg=None, context=None):
6363
try:
6464
price=grid_obj.get_price(cr, uid, carrier_grid, order, time.strftime('%Y-%m-%d'), context)
6565
available = True
66-
except osv.except_osv, e:
66+
except osv.except_osv as e:
6767
# no suitable delivery method found, probably configuration error
6868
_logger.error("Carrier %s: %s\n%s" % (carrier.name, e.name, e.value))
6969
price = 0.0

addons/portal_gamification/__manifest__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
'installable': True,
3939
'auto_install': True,
4040
'category': 'Hidden',
41+
'license': 'LGPL-3',
4142
}
4243

0 commit comments

Comments
 (0)