fix(aurora): check type of dictionary in debug log
This commit is contained in:
parent
e14845ef85
commit
5be5a39c54
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ class Change(AuroraBaseModel):
|
|||
|
||||
@classmethod
|
||||
def from_dict(cls, bot: Red, data: dict) -> "Change":
|
||||
logger.debug("Creating Change from dict: %s", data)
|
||||
logger.debug("Creating Change from dict (%s): %s", type(data), data)
|
||||
if "duration" in data and data["duration"] and not isinstance(data["duration"], timedelta):
|
||||
hours, minutes, seconds = map(int, data["duration"].split(':'))
|
||||
duration = timedelta(hours=hours, minutes=minutes, seconds=seconds)
|
||||
|
|
Loading…
Reference in a new issue