From ec95829a3772cf151c35299b4184a2862e5c0de2 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Fri, 14 Dec 2018 20:54:59 -0500 Subject: [PATCH] Fix relative import --- libs/utorrent/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/utorrent/client.py b/libs/utorrent/client.py index 78ef2214..3d439084 100644 --- a/libs/utorrent/client.py +++ b/libs/utorrent/client.py @@ -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):