Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion audio/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
import pkg_resources
from xblock.core import XBlock
from xblock.fields import Integer, Scope, String
from xblock.fragment import Fragment
try:
from web_fragments.fragment import Fragment
except:
# for backwards compatibility with quince and prior releases
from xblock.fragment import Fragment
try:
from xblock.utils.resources import ResourceLoader
except ModuleNotFoundError: # For backward compatibility with releases older than Quince.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def is_requirement(line):

setup(
name='audio-xblock',
version='0.3.0',
version='0.3.1',
description='Audio XBlock, to play audio files in the course',
long_description=README,
long_description_content_type='text/markdown',
Expand Down