Skip to content

Commit

Permalink
Fix metadata import
Browse files Browse the repository at this point in the history
I'm dumb
  • Loading branch information
OrangeChannel committed Aug 25, 2020
1 parent 3084278 commit 89ba006
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion acsuite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
"""Frame-based cutting/trimming/splicing of audio with VapourSynth and FFmpeg."""
__all__ = ['clip_to_timecodes', 'eztrim', 'f2ts']
try:
from _metadata import __author__, __credits__, __date__, __version__
from . import _metadata
__author__ = _metadata.__author__
__credits__ = _metadata.__credits__
__date__ = _metadata.__date__
__version__ = _metadata.__version__
except ImportError:
__author__ = __credits__ = __date__ = __version__ = 'unknown (portable mode)'

Expand Down
2 changes: 1 addition & 1 deletion acsuite/_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
doop, for explaining the use of None for empty slicing.
Vardë, for fixing FFmpeg's >4GB WAV file issues.
"""
__version__ = '5.3.0'
__version__ = '5.3.1'

0 comments on commit 89ba006

Please sign in to comment.