Fix BlockTransformer Py3 issues (#21376)

Django's reverse can handle Unicode for arguments.
This commit is contained in:
David Ormsbee
2019-08-19 12:16:39 -04:00
committed by GitHub
parent b97db5aa86
commit 95a4e9ba3c
3 changed files with 3 additions and 3 deletions

View File

@@ -17,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': six.text_type(block.scope_ids.usage_id).encode('utf-8'),
'usage_key_string': six.text_type(block.scope_ids.usage_id),
'handler': handler_name,
'suffix': suffix,
}).rstrip('/')