Skip to content

Commit

Permalink
Merge PR #161 into 13.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Feb 26, 2024
2 parents 066edd9 + 5a0620f commit 9c8a552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hr_attendance_rfid/models/hr_employee.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ def register_attendance(self, card_code):
res["error_message"] = msg
return res
except Exception as e:
res["error_message"] = e
_logger.error(e)
res["error_message"] = repr(e)
_logger.error(repr(e))
return res

0 comments on commit 9c8a552

Please sign in to comment.