Skip to content
Merged
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
4 changes: 3 additions & 1 deletion done/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from .done import DoneXBlock
from .done import DoneXBlock

__version__ = '2.0.1'
2 changes: 1 addition & 1 deletion done/done.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def resource_string(path):
"""Handy helper for getting resources from our kit."""
data = pkg_resources.resource_string(__name__, path)
return data.decode("utf8") if six.PY2 else data
return data.decode("utf8")


class DoneXBlock(XBlock):
Expand Down