*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit 7fa31b21 authored by Moser, Maximilian's avatar Moser, Maximilian
Browse files

Update formatscaper progress bar

* remove the ETA, because that's never accurate anyway
parent 606f861e
No related branches found
No related tags found
1 merge request!9Update formatscaper progress bar
......@@ -132,7 +132,12 @@ except OSError as e:
all_results = []
endangered_files = []
if not args.no_progressbar:
record_files = progressbar.progressbar(record_files or [])
bar = progressbar.ProgressBar(
widgets=[
progressbar.Percentage(), " (", progressbar.SimpleProgress(), ") ", progressbar.Bar(), " ", progressbar.Timer(), # noqa
],
)
record_files = bar(record_files or [])
for record_file in record_files or []:
sf_output = subprocess.check_output(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment