Ticket #19219: log.py.patch

File log.py.patch, 189 bytes (added by scovetta, 12 years ago)

Just the diff

Line 
119c19,22
2< user_id = context[self.user].id
3---
4> if isinstance(context[self.user], dict):
5> user_id = context[self.user]['id']
6> else:
7> user_id = context[self.user].id
Back to Top