mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-08 10:22:31 -05:00
[Owner, Economy] Use UTC in the timestamps
This commit is contained in:
@@ -689,7 +689,7 @@ class Owner:
|
||||
dpy_repo = "https://github.com/Rapptz/discord.py"
|
||||
python_url = "https://www.python.org/"
|
||||
since = datetime.datetime(2016, 1, 2, 0, 0)
|
||||
days_since = (datetime.datetime.now() - since).days
|
||||
days_since = (datetime.datetime.utcnow() - since).days
|
||||
dpy_version = "[{}]({})".format(discord.__version__, dpy_repo)
|
||||
py_version = "[{}.{}.{}]({})".format(*os.sys.version_info[:3],
|
||||
python_url)
|
||||
|
||||
Reference in New Issue
Block a user