~vauxoo/addons-vauxoo/7.0-pylint-luist

« back to all changes in this revision

Viewing changes to deliver_project/model/module.py

  • Committer: Moises Lopez
  • Date: 2014-09-30 16:10:27 UTC
  • mfrom: (1138.1.1 70-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20140930161027-dzvea4rbefm0ko7g
[MERGE] [FIX] Fix unused variable with autoflake and pylint

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        Name = dict_txt.get('MenuName')
53
53
        CompleteMenuName = dict_txt.get('CompleteMenuName')
54
54
        ActionHelp = dict_txt.get('ActionHelp')
55
 
        ModuleName = dict_txt.get('ModuleName')
56
55
        XmlId = dict_txt.get('XmlId')
57
56
        if Name:
58
57
            docStr = docStr+"===%s===" % Name
92
91
        '''
93
92
        res = {}
94
93
        model_data_obj = self.pool.get('ir.model.data')
95
 
        view_obj = self.pool.get('ir.ui.view')
96
 
        report_obj = self.pool.get('ir.actions.report.xml')
97
 
        act_window_obj_obj = self.pool.get('ir.actions.act_window')
98
94
        menu_obj = self.pool.get('ir.ui.menu')
99
95
        mlist = self.browse(cr, uid, ids, context=context)
100
96
        mnames = {}