Skip to content

Commit

Permalink
[FIX] crm_phone_valid: missing _logger import
Browse files Browse the repository at this point in the history
  • Loading branch information
fpodoo authored and jpr-odoo committed Feb 23, 2017
1 parent 8882e51 commit 8637506
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions addons/crm_phone_valid/models/crm_lead.py
@@ -1,9 +1,13 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

import logging
from odoo import api, fields, models, _
from odoo.exceptions import UserError

_logger = logging.getLogger(__name__)


# Skip if the phonenumber Python module is not installed
try:

Expand Down

0 comments on commit 8637506

Please sign in to comment.