Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fsb5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ def rebuild_sample(self, sample):
return sample.data
elif self.header.mode == SoundFormat.VORBIS:
# import here as vorbis.py requires native libraries
from . import vorbis
return vorbis.rebuild(sample)
from .vorbis import rebuild
return rebuild(sample)
elif self.header.mode.is_pcm:
from .pcm import rebuild
if self.header.mode == SoundFormat.PCM8:
Expand Down