Skip to content

Commit

Permalink
Changed ModuleNotFoundError by replacing module that has been replace…
Browse files Browse the repository at this point in the history
…d from python2 to python3 #1
  • Loading branch information
Srishti-j18 committed Jun 10, 2023
1 parent 1da674c commit 8e165d2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dist/client/dash_client.py
Expand Up @@ -14,14 +14,15 @@
"""
from __future__ import division
import read_mpd
import urlparse
import urllib2
from urllib.parse import urlparse
import urllib.request
import urllib.error
import random
import os
import sys
import errno
import timeit
import httplib
import http.client
from string import ascii_letters, digits
from argparse import ArgumentParser
from multiprocessing import Process, Queue
Expand Down

0 comments on commit 8e165d2

Please sign in to comment.