[25] Update footer (#2362)

dependabot/pip/nightly/num2words-0.5.14
bullmoose20 2 weeks ago committed by GitHub Action
parent 13e9376a48
commit bb3759c1cd

@ -37,5 +37,4 @@ Modifies default value presentation for default metadata files.
Fixes an issue causing IMDB collection to fail due to duplicate keys
Removed Blog from the Navigation due to lack of time for updating/maintaining it
Fixes #2354 by updating version of tmdbapi dependency
Added Start Time, End Time and Run Time to Summary of run. Date of Start/End Time now only displays if the Start and End are on different dates.
Added Start Time, Finished and Run Time to Summary of run.

@ -1 +1 @@
2.1.0-build24
2.1.0-build25

@ -428,14 +428,9 @@ def start(attrs):
logger.stacktrace()
logger.error(f"Report Error: {e}")
if start_time.date() == end_time.date():
start_str = start_time.strftime('%H:%M:%S')
end_str = end_time.strftime('%H:%M:%S')
else:
start_str = start_time.strftime('%H:%M:%S %Y-%m-%d')
end_str = end_time.strftime('%H:%M:%S %Y-%m-%d')
logger.separator(f"Finished {start_type}Run\n{version_line}\nStart Time: {start_str} End Time: {end_str} Run Time: {run_time}")
start_str = start_time.strftime('%H:%M:%S %Y-%m-%d')
end_str = end_time.strftime('%H:%M:%S %Y-%m-%d')
logger.separator(f"Finished {start_type}Run\n{version_line}\nStart Time: {start_str} Finished: {end_str} Run Time: {run_time}")
logger.remove_main_handler()
except Exception as e:
logger.stacktrace()

Loading…
Cancel
Save