Skip to content

Commit

Permalink
Correct token code. Still not working, likely a server bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeamccarthy committed Jun 11, 2021
1 parent c6a99ec commit 898e9c2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions mentalHealthBot.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,14 @@
import random
from keepalive import keepalive

"""
# DEBUG
for key in os.environ:
print (key)
"""

# enter token for the server
TOKEN = os.getenv('DISCORD_TOKEN')
# enter application id
TOKEN = os.environ['DISCORD_TOKEN']

# client = commands.Bot(command_prefix='.')

Expand Down

0 comments on commit 898e9c2

Please sign in to comment.