From 8434fd54193c8dadca31e70d87f3042468e0ea5e Mon Sep 17 00:00:00 2001 From: Labrys Date: Sun, 5 Jun 2016 09:35:33 -0400 Subject: [PATCH] Python 3: Fix relative imports --- core/synchronousdeluge/client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/synchronousdeluge/client.py b/core/synchronousdeluge/client.py index fa80fb46..050d414e 100644 --- a/core/synchronousdeluge/client.py +++ b/core/synchronousdeluge/client.py @@ -4,9 +4,9 @@ import platform from collections import defaultdict from itertools import imap -from exceptions import DelugeRPCError -from protocol import DelugeRPCRequest, DelugeRPCResponse -from transfer import DelugeTransfer +from .exceptions import DelugeRPCError +from .protocol import DelugeRPCRequest, DelugeRPCResponse +from .transfer import DelugeTransfer __all__ = ["DelugeClient"]