From 469138327301b2c6d7bf93dcfed19687d87f957b Mon Sep 17 00:00:00 2001 From: "Richard Mathot (OpenERP)" Date: Wed, 12 Feb 2014 14:18:37 +0100 Subject: [PATCH] [REF] code cleaning bzr revid: rim@openerp.com-20140212131837-gjbl4nu8d1zdwqy1 --- addons/hr_evaluation/hr_evaluation.py | 2 +- addons/hr_recruitment/__openerp__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/hr_evaluation/hr_evaluation.py b/addons/hr_evaluation/hr_evaluation.py index d416b42d5d2..0784c912172 100644 --- a/addons/hr_evaluation/hr_evaluation.py +++ b/addons/hr_evaluation/hr_evaluation.py @@ -107,7 +107,7 @@ class hr_employee(osv.Model): 'evaluation_date': fields.date('Next Appraisal Date', help="The date of the next appraisal is computed by the appraisal plan's dates (first appraisal + periodicity)."), } - def run_employee_evaluation(self, cr, uid, automatic=False, use_new_cursor=False, context=None): + def run_employee_evaluation(self, cr, uid, automatic=False, use_new_cursor=False, context=None): # cronjob now = parser.parse(datetime.now().strftime('%Y-%m-%d')) obj_evaluation = self.pool.get('hr_evaluation.evaluation') emp_ids = self.search(cr, uid, [('evaluation_plan_id', '<>', False), ('evaluation_date', '=', False)], context=context) diff --git a/addons/hr_recruitment/__openerp__.py b/addons/hr_recruitment/__openerp__.py index 4996731a559..4bc8bac4649 100644 --- a/addons/hr_recruitment/__openerp__.py +++ b/addons/hr_recruitment/__openerp__.py @@ -65,7 +65,7 @@ You can define the different phases of interviews and easily rate the applicant 'static/src/js/job_position.js', ], 'test': ['test/recruitment_process.yml'], - 'css':['static/src/css/job_position.css'], + 'css': ['static/src/css/job_position.css'], 'installable': True, 'auto_install': False, 'application': True,