Skip to content
Snippets Groups Projects
Commit 19ea7c38 authored by arbisoft's avatar arbisoft Committed by Awais Qureshi
Browse files

BOM-115

Fixing python3
parent 76768582
No related branches found
No related tags found
No related merge requests found
......@@ -293,7 +293,7 @@ class AboutTestCaseXML(LoginEnrollmentTestCase, ModuleStoreTestCase):
url = reverse('about_course', args=[text_type(self.xml_course_id)])
resp = self.client.get(url)
self.assertEqual(resp.status_code, 200)
self.assertIn(self.xml_data, resp.content)
self.assertIn(self.xml_data, resp.content.decode('utf-8'))
@patch.dict('django.conf.settings.FEATURES', {'DISABLE_START_DATES': False})
def test_anonymous_user_xml(self):
......
<%page expression_filter="h"/>
<%namespace name='static' file='../static_content.html'/>
<%!
import urllib
import six
from django.utils.translation import ugettext as _
from django.urls import reverse
......@@ -33,7 +33,7 @@ from six import text_type
path=reverse('about_course', args=[text_type(course.id)])
)
).replace(u" ", u"+")
tweet_action = u"http://twitter.com/intent/tweet?text={tweet_text}".format(tweet_text=urllib.quote_plus(tweet_text.encode('UTF-8')))
tweet_action = u"http://twitter.com/intent/tweet?text={tweet_text}".format(tweet_text=six.moves.urllib.parse.quote_plus(tweet_text.encode('UTF-8')))
facebook_link = static.get_value('course_about_facebook_link', settings.PLATFORM_FACEBOOK_ACCOUNT)
......@@ -50,8 +50,8 @@ from six import text_type
email_subject = _("Take a course with {platform} online").format(platform=platform_name)
email_link = u"mailto:?subject={subject}&body={body}".format(
subject=urllib.quote_plus(email_subject.encode('UTF-8')),
body=urllib.quote_plus(email_body.encode('UTF-8'))
subject=six.moves.urllib.parse.quote_plus(email_subject.encode('UTF-8')),
body=six.moves.urllib.parse.quote_plus(email_body.encode('UTF-8'))
)
%>
<a href="${tweet_action}" class="share">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment