summaryrefslogtreecommitdiff
path: root/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-01-29 17:53:41 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-01-29 17:53:41 +0000
commit1fdeabdc269610ddb66f36f34e1f6416a5eea439 (patch)
treefdc643778f2a873bdb2b3581ae354bb10f242215 /dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch
parentf9e0c4a63c8eacef6ef1379be1fee3c5b90f7c0e (diff)
downloadbaldeagleos-repo-1fdeabdc269610ddb66f36f34e1f6416a5eea439.tar.gz
baldeagleos-repo-1fdeabdc269610ddb66f36f34e1f6416a5eea439.tar.xz
baldeagleos-repo-1fdeabdc269610ddb66f36f34e1f6416a5eea439.zip
Adding metadata
Diffstat (limited to 'dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch')
-rw-r--r--dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch b/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch
deleted file mode 100644
index 6231ba17b86e..000000000000
--- a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-index afc504d..bf43c06 100644
---- a/ffmpeg/_run.py
-+++ b/ffmpeg/_run.py
-@@ -137,7 +137,7 @@ def _get_output_args(node, stream_name_map):
- if 'video_size' in kwargs:
- video_size = kwargs.pop('video_size')
- if not isinstance(video_size, basestring) and isinstance(
-- video_size, collections.Iterable
-+ video_size, collections.abc.Iterable
- ):
- video_size = '{}x{}'.format(video_size[0], video_size[1])
- args += ['-video_size', video_size]