Skip to content

Commit

Permalink
[FIX] web_editor: add missing import
Browse files Browse the repository at this point in the history
Thanks to my Linter...
  • Loading branch information
JKE-be committed Sep 30, 2016
1 parent 20861b4 commit e2fb1cb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions addons/web_editor/models/ir_ui_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.

import copy
import logging
from lxml import etree, html

from odoo.exceptions import AccessError
from odoo import api, models

_logger = logging.getLogger(__name__)


class IrUiView(models.Model):
_inherit = 'ir.ui.view'
Expand Down

0 comments on commit e2fb1cb

Please sign in to comment.