[IMP] crm: remove dummy Python class definition by reordering Python module imports

bzr revid: rco@openerp.com-20120704112754-u6kg6pxe279zmgvf
This commit is contained in:
Raphael Collet 2012-07-04 13:27:54 +02:00
parent 6b1606f8de
commit 3bf79cdb78
2 changed files with 1 additions and 5 deletions

View File

@ -22,8 +22,8 @@
import crm
import crm_action_rule
import crm_segmentation
import crm_meeting
import crm_lead
import crm_meeting
import crm_phonecall
import report
import wizard

View File

@ -28,10 +28,6 @@ import tools
from tools.translate import _
_logger = logging.getLogger(__name__)
class crm_lead(base_stage, osv.osv):
""" CRM Leads """
_name = 'crm.lead'
class crm_meeting(base_state, osv.Model):
""" Model for CRM meetings """
_name = 'crm.meeting'