Skip to content

Commit 89ba006

Browse files
committed
Fix metadata import
I'm dumb
1 parent 3084278 commit 89ba006

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

acsuite/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
"""Frame-based cutting/trimming/splicing of audio with VapourSynth and FFmpeg."""
22
__all__ = ['clip_to_timecodes', 'eztrim', 'f2ts']
33
try:
4-
from _metadata import __author__, __credits__, __date__, __version__
4+
from . import _metadata
5+
__author__ = _metadata.__author__
6+
__credits__ = _metadata.__credits__
7+
__date__ = _metadata.__date__
8+
__version__ = _metadata.__version__
59
except ImportError:
610
__author__ = __credits__ = __date__ = __version__ = 'unknown (portable mode)'
711

acsuite/_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
doop, for explaining the use of None for empty slicing.
88
Vardë, for fixing FFmpeg's >4GB WAV file issues.
99
"""
10-
__version__ = '5.3.0'
10+
__version__ = '5.3.1'

0 commit comments

Comments
 (0)