Merge pull request #46 from AggPro/patch-2

fixed typo in readme
This commit is contained in:
Dusty.P 2018-06-13 23:54:49 -08:00 committed by GitHub
commit 7cf1129624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,13 +27,13 @@ This bot extends the rewrite version of discord.py. A couple of variables have b
Make sure this one is installed. Example: Make sure this one is installed. Example:
```py ```py
if self.bot.mainenance: if self.bot.maintenance:
print('I am in the development branch') print('I am in the development branch')
if not self.bot.mainenance: if not self.bot.maintenance:
print('I am in the master branch') print('I am in the master branch')
``` ```
In other words. `self.mainenance` returns `False` in production and `True` in developer modes. In other words. `self.maintenance` returns `False` in production and `True` in developer modes.
> `self.bot.embed_color` > `self.bot.embed_color`