diff options
| author | 2018-10-12 00:37:20 +0200 | |
|---|---|---|
| committer | 2018-10-12 00:37:20 +0200 | |
| commit | 9c9ebeed855295d2b8de62c4a478cb87924cb95b (patch) | |
| tree | 508c753b38ca6f205685fbf9657b06a141c02408 /bot/cogs/movie.py | |
| parent | Fixing halloweenify json path (diff) | |
| parent | improving the .help docstrings, and making the bot load cogs from the correct... (diff) | |
Merging in master
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/movie.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/cogs/movie.py b/bot/cogs/movie.py index 82b9c682..925f813f 100644 --- a/bot/cogs/movie.py +++ b/bot/cogs/movie.py @@ -18,8 +18,11 @@ class Movie: def __init__(self, bot): self.bot = bot - @commands.command(name='movie', alias=['tmdb'], brief='Pick a scary movie') + @commands.command(name='movie', alias=['tmdb']) async def random_movie(self, ctx): + """ + Randomly select a scary movie and display information about it. + """ selection = await self.select_movie() movie_details = await self.format_metadata(selection) |