ports/sysutils/iocage/files/patch-iocage__lib_ioc__common.py
Michael Gmelin e15d19c28d sysutils/iocage: Fixes for python 3.11
PR:		280219
Reported by:	asomers
Tested by:	asomers
2024-07-12 16:30:27 +02:00

11 lines
391 B
Python

--- iocage_lib/ioc_common.py.orig 2024-07-10 17:23:47 UTC
+++ iocage_lib/ioc_common.py
@@ -77,7 +77,7 @@ def callback(_log, callback_exception):
else:
if not isinstance(message, str) and isinstance(
message,
- collections.Iterable
+ collections.abc.Iterable
):
message = '\n'.join(message)