diff options
| author | 2018-11-20 15:14:46 +0100 | |
|---|---|---|
| committer | 2018-11-20 15:14:46 +0100 | |
| commit | 87580f3414d3873a688b31352832ebd1a1527a2a (patch) | |
| tree | 9ee1331f24e36d6f1de4190c469b94eb12f93f9e /bot/cogs/hacktober/scarymovie.py | |
| parent | Merge branch 'meooow25-spookysound' (diff) | |
| parent | Fixing flake8 errors, and making the gif post inside an embed. (diff) | |
Merge branch 'markylon-gif'
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/hacktober/scarymovie.py (renamed from bot/cogs/hacktober/movie.py) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/hacktober/movie.py b/bot/cogs/hacktober/scarymovie.py index 925f813f..97e9f424 100644 --- a/bot/cogs/hacktober/movie.py +++ b/bot/cogs/hacktober/scarymovie.py @@ -10,7 +10,7 @@ TMDB_API_KEY = environ.get('TMDB_API_KEY') TMDB_TOKEN = environ.get('TMDB_TOKEN') -class Movie: +class ScaryMovie: """ Selects a random scary movie and embeds info into discord chat """ @@ -133,4 +133,4 @@ class Movie: def setup(bot): - bot.add_cog(Movie(bot)) + bot.add_cog(ScaryMovie(bot)) |