Merge pull request #1572 from clinton-hall/refactor/configuration

Fix absolute imports for qbittorrent and utorrent in Python 2.7
This commit is contained in:
Labrys of Knossos 2019-03-10 20:52:14 -04:00 committed by GitHub
commit 3f6b447b3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,5 @@
from __future__ import absolute_import
from qbittorrent import Client as qBittorrentClient from qbittorrent import Client as qBittorrentClient
import core import core

View file

@ -1,3 +1,5 @@
from __future__ import absolute_import
from utorrent.client import UTorrentClient from utorrent.client import UTorrentClient
import core import core