From 76e08673ed3a4cc17b8ee13027360c1132514685 Mon Sep 17 00:00:00 2001 From: wilson gomez Date: Mon, 7 Feb 2022 16:42:56 -0500 Subject: [PATCH] minor fix --- payroll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payroll.py b/payroll.py index dd1b0f0..fc77fa7 100644 --- a/payroll.py +++ b/payroll.py @@ -519,7 +519,7 @@ class Payroll(metaclass=PoolMeta): continue start_date = self.start end_date = None - if event.end_datea and event.uom.simbol == 'd': + if event.end_date and event.uom.simbol == 'd': if event.start_date > start_date: start_date = event.start_date end_date = self.end