Added
Link Here
|
0 |
- |
1 |
--- iocage_lib/ioc_exceptions.py.orig 2024-07-10 17:22:46 UTC |
|
|
2 |
+++ iocage_lib/ioc_exceptions.py |
3 |
@@ -31,7 +31,7 @@ class ExceptionWithMsg(Exception): |
4 |
def __init__(self, message): |
5 |
if not isinstance(message, str) and not isinstance( |
6 |
message, |
7 |
- collections.Iterable |
8 |
+ collections.abc.Iterable |
9 |
): |
10 |
message = [message] |
11 |
|