Skip to content

Commit

Permalink
finally fixed token error
Browse files Browse the repository at this point in the history
  • Loading branch information
oyisre committed Aug 27, 2016
1 parent a43fb8b commit 89cc2d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
venv
.idea
.pyc
.env
config
3 changes: 2 additions & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,5 @@ async def on_ready():

if __name__ == '__main__':
bot.add_cog(tests.Games(bot))
bot.run(str(os.environ.get('DISCORD_TOKEN')))
print(str(os.environ['DISCORD_TOKEN']))
bot.run(str(os.environ['DISCORD_TOKEN']))

0 comments on commit 89cc2d5

Please sign in to comment.