1
0
Fork 0
mirror of synced 2024-06-23 08:30:29 +12:00

hack to check for generator type cause too lazy to import

This commit is contained in:
Nick Sweeting 2022-05-09 23:50:56 -07:00
parent 9d6a59485c
commit 0b4df768ba

View file

@ -432,7 +432,7 @@ def log_archive_method_finished(result: "ArchiveResult"):
# Prettify error output hints string and limit to five lines
hints = getattr(result.output, 'hints', None) or ()
if hints:
if isinstance(hints, (list, tuple)):
if isinstance(hints, (list, tuple, type(_ for _ in ()))):
hints = (hint.decode() for hint in hints if isinstance(hint, bytes))
else:
if isinstance(hints, bytes):