Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
fix updated_at regression
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkrug committed Jun 6, 2019
1 parent 5058a96 commit 48610a3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/oic/oauth2/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,11 @@ def _add_value(self, skey, vtyp, key, val, _deser, null_allowed):
if vtyp is bool:
self._dict[skey] = val
else:
raise ValueError(
'"{}", wrong type of value for "{}"'.format(val, skey)
)
pass
logger.warn('"{}", wrong type of value for "{}"'.format(val, skey))
#raise ValueError(
# '"{}", wrong type of value for "{}"'.format(val, skey)
#)
elif isinstance(val, vtyp): # Not necessary to do anything
self._dict[skey] = val
else:
Expand Down

0 comments on commit 48610a3

Please sign in to comment.