Fix relative import

This commit is contained in:
Labrys of Knossos 2018-12-14 20:54:59 -05:00
commit ec95829a37

View file

@ -6,13 +6,13 @@ import urllib
import urllib2
import urlparse
from .upload import MultiPartForm
try:
import json
except ImportError:
import simplejson as json
from upload import MultiPartForm
class UTorrentClient(object):
def __init__(self, base_url, username, password):