From 352470e3646b13bcc09e27b4a22d454ef95e8487 Mon Sep 17 00:00:00 2001 From: "Dusty.P" Date: Sat, 2 Jun 2018 23:25:03 -0800 Subject: [PATCH] Adjust gti --- exts/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exts/utils.py b/exts/utils.py index 75b97a1..97861d0 100644 --- a/exts/utils.py +++ b/exts/utils.py @@ -466,7 +466,7 @@ class Utils: description = '' if time is None: - description += 'Time not given... using current UTC time.' + em.set_footer(text='Time not given... using current UTC time.') in_time = datetime.utcnow() else: try: @@ -481,7 +481,7 @@ class Utils: parsed_tz = pytz.timezone(tz) break else: - description += 'Valid timezone not found in time string. Using UTC...' + em.set_footer(text='Valid timezone not found in time string. Using UTC...') parsed_tz = pytz.timezone('UTC') in_time = parse(time.upper()) in_time = parsed_tz.localize(in_time)