Skip to content

Commit cccfadd

Browse files
committed
eye-d3: fix error with python 3.14
1 parent fba0e40 commit cccfadd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Formula/e/eye-d3.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ class EyeD3 < Formula
3131
end
3232

3333
def install
34+
# Fix to error: SystemError: buffer overflow
35+
# Issue ref: https://github.com/nicfit/eyeD3/issues/680
36+
inreplace "eyed3/utils/console.py", "'\\0'", "b'\\\\0'"
37+
3438
virtualenv_install_with_resources
3539
doc.install Dir["docs/*"]
3640
end

0 commit comments

Comments
 (0)