|
|
@@ -77,5 +77,5 @@ def convert_to_date(weird_string):
|
|
|
local_timezone = pytz.timezone('Australia/Sydney')
|
|
|
now = datetime.datetime.now(local_timezone)
|
|
|
calculated_date = datetime.datetime.strptime(str(now.year) + ' ' + weird_string, "%Y %A %d %b").date()
|
|
|
- print(calculated_date)
|
|
|
+ # print(calculated_date)
|
|
|
return calculated_date
|