From 2d37022525f46bc7c192bfb0181961a2f5b503ae Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 20 Jan 2014 23:28:35 +0100 Subject: [PATCH] Relative import --- couchpotato/core/providers/torrent/ilovetorrents/__init__.py | 2 +- couchpotato/core/providers/torrent/passthepopcorn/__init__.py | 2 +- couchpotato/core/providers/torrent/thepiratebay/__init__.py | 2 +- couchpotato/core/providers/torrent/yify/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/couchpotato/core/providers/torrent/ilovetorrents/__init__.py b/couchpotato/core/providers/torrent/ilovetorrents/__init__.py index 44fa353e..f3f7b479 100644 --- a/couchpotato/core/providers/torrent/ilovetorrents/__init__.py +++ b/couchpotato/core/providers/torrent/ilovetorrents/__init__.py @@ -1,4 +1,4 @@ -from main import ILoveTorrents +from .main import ILoveTorrents def start(): diff --git a/couchpotato/core/providers/torrent/passthepopcorn/__init__.py b/couchpotato/core/providers/torrent/passthepopcorn/__init__.py index 9593c44e..a3e57c79 100644 --- a/couchpotato/core/providers/torrent/passthepopcorn/__init__.py +++ b/couchpotato/core/providers/torrent/passthepopcorn/__init__.py @@ -1,4 +1,4 @@ -from main import PassThePopcorn +from .main import PassThePopcorn def start(): diff --git a/couchpotato/core/providers/torrent/thepiratebay/__init__.py b/couchpotato/core/providers/torrent/thepiratebay/__init__.py index 3cb35d14..8b3921cd 100644 --- a/couchpotato/core/providers/torrent/thepiratebay/__init__.py +++ b/couchpotato/core/providers/torrent/thepiratebay/__init__.py @@ -1,4 +1,4 @@ -from main import ThePirateBay +from .main import ThePirateBay def start(): diff --git a/couchpotato/core/providers/torrent/yify/__init__.py b/couchpotato/core/providers/torrent/yify/__init__.py index 8734af26..3a359608 100644 --- a/couchpotato/core/providers/torrent/yify/__init__.py +++ b/couchpotato/core/providers/torrent/yify/__init__.py @@ -1,4 +1,4 @@ -from main import Yify +from .main import Yify def start():