mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-16 00:08:58 +03:00
15 lines
292 B
Diff
15 lines
292 B
Diff
--- a/ffmpeg/_utils.py
|
|
+++ b/ffmpeg/_utils.py
|
|
@@ -3,6 +3,11 @@ from builtins import str
|
|
import hashlib
|
|
import sys
|
|
|
|
+try:
|
|
+ from collections.abc import Iterable
|
|
+except ImportError:
|
|
+ from collections import Iterable
|
|
+
|
|
|
|
def with_metaclass(meta, *bases):
|
|
class metaclass(meta):
|