diff options
author | 2019-02-16 20:22:58 +0300 | |
---|---|---|
committer | 2019-02-16 20:22:58 +0300 | |
commit | 4818c4b71a4d4b9842c45421273ce2d68b4773e8 (patch) | |
tree | 31710e29c4609ebb82c5f5cfb635c00027846320 | |
parent | Fixed an issue with the request (diff) |
Unindented comment
-rw-r--r-- | bot/seasons/valentines/movie_generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/valentines/movie_generator.py b/bot/seasons/valentines/movie_generator.py index ef2cf296..851c35ff 100644 --- a/bot/seasons/valentines/movie_generator.py +++ b/bot/seasons/valentines/movie_generator.py @@ -38,7 +38,7 @@ class RomanceMovieFinder: # the api request url request_url = "https://api.themoviedb.org/3/discover/movie?" + parse.urlencode(params) async with self.bot.http_session.get(request_url) as resp: - # trying to load the json file returned from the api + # trying to load the json file returned from the api try: data = await resp.json() # selecting random result from results object in the json file |