|
@@ -114,7 +114,7 @@ def get_meta_data(this_data, this_venue):
|
|
|
# print(times[1])
|
|
# print(times[1])
|
|
|
match = close_regex.search(this_meta_data)
|
|
match = close_regex.search(this_meta_data)
|
|
|
if match:
|
|
if match:
|
|
|
- # print(match[1])
|
|
|
|
|
|
|
+ print('match.group(1): {}'.format(match.group(1)))
|
|
|
times[2] = match.group(1)[:-5]
|
|
times[2] = match.group(1)[:-5]
|
|
|
l_time = datetime.datetime.strptime(times[2], time_format)
|
|
l_time = datetime.datetime.strptime(times[2], time_format)
|
|
|
print('l_time: {}'.format(l_time))
|
|
print('l_time: {}'.format(l_time))
|