Skip to content

Commit

Permalink
utils.datetime.is8601_parse no longer has a "microseconds" arg
Browse files Browse the repository at this point in the history
  • Loading branch information
jesopo committed Jan 20, 2020
1 parent 119066b commit 37b15e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def video_details(self, video_id):
content = item["contentDetails"]

video_uploaded_at = utils.datetime.iso8601_parse(
snippet["publishedAt"], microseconds=True)
snippet["publishedAt"])
video_uploaded_at = utils.datetime.date_human(video_uploaded_at)

video_uploader = snippet["channelTitle"]
Expand Down

0 comments on commit 37b15e4

Please sign in to comment.