Fixing python-modernize issues.

This commit is contained in:
arbisoft
2019-07-10 12:49:45 +05:00
parent 92c7a43011
commit 39ebb9c191
6 changed files with 19 additions and 5 deletions

View File

@@ -2,6 +2,9 @@
XBlock runtime implementations for edX Studio
"""
from __future__ import absolute_import
import six
from django.urls import reverse
@@ -14,7 +17,7 @@ def handler_url(block, handler_name, suffix='', query='', thirdparty=False):
raise NotImplementedError("edX Studio doesn't support third-party xblock handler urls")
url = reverse('component_handler', kwargs={
'usage_key_string': unicode(block.scope_ids.usage_id).encode('utf-8'),
'usage_key_string': six.text_type(block.scope_ids.usage_id).encode('utf-8'),
'handler': handler_name,
'suffix': suffix,
}).rstrip('/')