Skip to content

Commit

Permalink
Merge pull request #24 from Defenso-QTH/fix-collections.Iterable
Browse files Browse the repository at this point in the history
Replace deprecated collections.Iterable by collections.abc.Iterable
  • Loading branch information
dgeo authored Sep 9, 2024
2 parents 7c938d4 + aac072d commit 9c08450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iocage_lib/ioc_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def callback(_log, callback_exception):
else:
if not isinstance(message, str) and isinstance(
message,
collections.Iterable
collections.abc.Iterable
):
message = '\n'.join(message)

Expand Down

0 comments on commit 9c08450

Please sign in to comment.