[IMP] hr_attendance:removed print statement

bzr revid: mtr@mtr-20110202104049-4g37pfocg7b4wwl8
This commit is contained in:
mtr 2011-02-02 16:10:49 +05:30
parent c4a9cf71c1
commit 36c8648d41
1 changed files with 0 additions and 2 deletions

View File

@ -83,9 +83,7 @@ class report_custom(report_rml):
# sum up the attendances' durations
ldt = None
for att in attendences:
print"--att---",att
dt = datetime.strptime(att['name'], '%Y-%m-%d %H:%M:%S')
print"--dt---",dt
if ldt and att['action'] == 'sign_out':
wh += (dt - ldt).seconds/60/60
else: