minor change

bzr revid: solanki.priyesh@gmail.com-20081211115052-oi8314q6m9kr5v8r
This commit is contained in:
Priyesh 2008-12-11 17:20:52 +05:30
parent f741d23576
commit ac68d17cc5
2 changed files with 2 additions and 3 deletions

View File

@ -71,8 +71,7 @@ class hr_attendance(osv.osv):
''' % (id, id)
cr.execute(sql)
atts = cr.fetchall()
print "ATTS", atts
if not ((len(atts)==1 and atts[0][0] == 'sign_in')) or (atts[0][0] != atts[1][0] and atts[0][1] != atts[1][1]):
if not ((len(atts)==1 and atts[0][0] == 'sign_in') or (atts[0][0] != atts[1][0] and atts[0][1] != atts[1][1])):
return False
return True