Skip to content

Commit

Permalink
Merge pull request #12 from criecm/fix_ioc_exceptions
Browse files Browse the repository at this point in the history
fix collections vs Iterable
  • Loading branch information
dgeo authored Jun 18, 2024
2 parents 2d3ea98 + daf8415 commit ee53523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iocage_lib/ioc_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ExceptionWithMsg(Exception):
def __init__(self, message):
if not isinstance(message, str) and not isinstance(
message,
collections.Iterable
collections.abc.Iterable
):
message = [message]

Expand Down

0 comments on commit ee53523

Please sign in to comment.