Update plex_client.py
This commit is contained in:
parent
2b97e685dc
commit
b5859a5ed5
1 changed files with 2 additions and 1 deletions
|
|
@ -484,7 +484,8 @@ class PlexClient:
|
|||
|
||||
if match:
|
||||
date_str = match.group(1)
|
||||
return datetime.strptime(date_str, '%Y-%m-%d')
|
||||
parsed_date = datetime.strptime(date_str, '%Y-%m-%d')
|
||||
return parsed_date
|
||||
|
||||
return None
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue