We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had to update the import urlparse to import urllib.parse on line 13 along with:
import urlparse
import urllib.parse
Line 56: video_base_url = urllib.parse.urljoin(base_url, video['base_url']) Line 94: audio_base_url = urllib.parse.urljoin(base_url, audio['base_url']) Line 175: base_url = urllib.parse.urljoin(master_json_url, content['base_url'])
video_base_url = urllib.parse.urljoin(base_url, video['base_url'])
audio_base_url = urllib.parse.urljoin(base_url, audio['base_url'])
base_url = urllib.parse.urljoin(master_json_url, content['base_url'])
The text was updated successfully, but these errors were encountered:
My man!
Sorry, something went wrong.
Fixed on #27
python 3 updates
5773412
- applied the suggestions for urlparse from eMBee#24 - removing versions for requirements.txt as per guidance of eMBee#30
No branches or pull requests
Had to update the
import urlparse
toimport urllib.parse
on line 13 along with:Line 56:
video_base_url = urllib.parse.urljoin(base_url, video['base_url'])
Line 94:
audio_base_url = urllib.parse.urljoin(base_url, audio['base_url'])
Line 175:
base_url = urllib.parse.urljoin(master_json_url, content['base_url'])
The text was updated successfully, but these errors were encountered: