Skip to content

Commit ef38965

Browse files
sebalixMiquelRForgeFlow
authored andcommitted
Fix Travis (OCA#616)
* [FIX] auth_from_http_remote_user - Lint * [FIX] server_environment - Lint * [FIX] base_module_doc_rst - Lint * [FIX] fetchmail_notify_error_to_sender - Fix XML view, it was the 'active' field from 'fetchmail_attach_from_folder' module which was targeted by mistake (belonging to another data model)
1 parent 77e343e commit ef38965

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fetchmail_notify_error_to_sender/__openerp__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{
2222
'name': 'Send notice on fetchmail errors',
2323
'summary': 'If fetching mails gives error, send an email to sender',
24-
'version': '8.0.1.0.0',
24+
'version': '8.0.1.0.1',
2525
'category': 'Tools',
2626
'author': "Agile Business Group,Odoo Community Association (OCA)",
2727
'website': 'http://www.agilebg.com',

fetchmail_notify_error_to_sender/fetchmail_view.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<field name="model">fetchmail.server</field>
88
<field name="inherit_id" ref="fetchmail.view_email_server_form"></field>
99
<field name="arch" type="xml">
10-
<field name="active" position="after">
11-
<field name="error_notice_template_id"></field>
12-
</field>
10+
<xpath expr="//page[@string='Advanced']/group/field[@name='active']" position="after">
11+
<field name="error_notice_template_id"/>
12+
</xpath>
1313
</field>
1414
</record>
1515
</data>

0 commit comments

Comments
 (0)