diff options
author | 2018-10-26 18:37:53 +0530 | |
---|---|---|
committer | 2018-10-26 18:37:53 +0530 | |
commit | b450a47bd7e324399fc6530108146d4e6d165bf3 (patch) | |
tree | cac58d3227c4f7c515fe96d63f31d7eeaf04eeec | |
parent | Merge branch 'master' of github.com:discord-python/hacktoberbot (diff) |
Update README and other fixes.
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | bot/__main__.py | 2 |
2 files changed, 6 insertions, 6 deletions
@@ -8,18 +8,18 @@ We know it can be difficult to get into the whole open source thing at first. To ## Commands -!repository - Links to this repository +.repository - Links to this repository ### Git -!Git - Links to getting started with Git page -!Git.commit - An example commit command +.Git - Links to getting started with Git page +.Git.commit - An example commit command ### Halloween Facts Random halloween facts are posted regularly. -!hallofact - Show the last posted Halloween fact +.hallofact - Show the last posted Halloween fact ### Avatar Spookification -!savatar - Spookifies your avatar with a few random effects. +.savatar or .spookyavatar - Spookifies your avatar with a few random effects. ## Getting started diff --git a/bot/__main__.py b/bot/__main__.py index f218443a..ccd69b0b 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -5,7 +5,7 @@ from traceback import format_exc from discord.ext import commands -HACKTOBERBOT_TOKEN = 'NDk5NjAzOTk1MzkyODY4MzU1.Dq3ITw.F0f45KYcZN1NgAyPIbrsgoz49Yo'#environ.get('HACKTOBERBOT_TOKEN') +HACKTOBERBOT_TOKEN = environ.get('HACKTOBERBOT_TOKEN') log = logging.getLogger() if HACKTOBERBOT_TOKEN: |