diff --git a/feedback/feedback.py b/feedback/feedback.py index 5eb48a5..1634ba6 100644 --- a/feedback/feedback.py +++ b/feedback/feedback.py @@ -14,7 +14,10 @@ from xblock.core import XBlock from xblock.fields import Scope, Integer, String, List, Float from web_fragments.fragment import Fragment -from xblock.utils.resources import ResourceLoader +try: + from xblock.utils.resources import ResourceLoader +except ModuleNotFoundError: # For backward compatibility with releases older than Quince. + from xblockutils.resources import ResourceLoader resource_loader = ResourceLoader(__name__) diff --git a/setup.py b/setup.py index 15a64c3..5abb815 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def package_data(pkg, roots): setup( name='feedback-xblock', - version='1.1', + version='1.2.0', description='XBlock for providing feedback on course content', long_description=README, long_description_content_type='text/x-rst',