Fix typo in video url

This commit is contained in:
Kevin Fronczak
2019-01-28 14:10:13 -05:00
parent abcf2ae1a1
commit 0e33457ed0
+1 -1
View File
@@ -156,7 +156,7 @@ def request_videos(blink, time=None, page=0):
:param page: Page number to get videos from.
"""
timestamp = get_time(time)
url = "{}/api/v2/videos/changed?since={}&page/{}".format(
url = "{}/api/v2/videos/changed?since={}&page={}".format(
blink.urls.base_url, timestamp, page)
return http_get(blink, url)