diff options
Diffstat (limited to '')
| -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:  |