aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/utils/time.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/utils/time.py b/bot/utils/time.py
index fc003f9e2..533b7ef83 100644
--- a/bot/utils/time.py
+++ b/bot/utils/time.py
@@ -147,7 +147,7 @@ def get_duration(date_from: datetime.datetime, date_to: datetime.datetime) -> st
return ', '.join(results[::-1][:2])
-def get_duration_from_expiry(expiry: str) -> str:
+def get_duration_from_expiry(expiry: str, date_from: datetime = None) -> str:
"""
Get the duration between datetime.utcnow() and an expiry, in human readable format.
@@ -160,6 +160,6 @@ def get_duration_from_expiry(expiry: str) -> str:
:param expiry: A string.
"""
- date_from = datetime.datetime.utcnow()
+ date_from = date_from or datetime.datetime.utcnow()
date_to = dateutil.parser.isoparse(expiry).replace(tzinfo=None)
return get_duration(date_from, date_to)