Browse Source

Fix verbose logging crash

It appears that when the progress logger was broken up into separate
classes, the progress_end function was not properly split and some
threading functionality remained in the base class.
pull/70/head
Adam Johnson 7 years ago
parent
commit
b7ac558035
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 4
      korman/exporter/logger.py

4
korman/exporter/logger.py

@ -84,10 +84,6 @@ class _ExportLogger:
export_time = time.perf_counter() - self._time_start_overall
self.msg("\nExported '{}' in {:.2f}s", self._age_path.name, export_time)
# Ensure the got dawg thread goes good-bye
self._thread.join(timeout=5.0)
assert not self._thread.is_alive()
def progress_increment(self):
pass

Loading…
Cancel
Save