diff --git a/ts3/__init__.py b/ts3/__init__.py index cf21772..c71a3a4 100644 --- a/ts3/__init__.py +++ b/ts3/__init__.py @@ -25,9 +25,9 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -from protocol import TS3Proto, TS3Response, ConnectionError, NoConnectionError, InvalidArguments -from server import TS3Server -from defines import * +from .protocol import TS3Proto, TS3Response, ConnectionError, NoConnectionError, InvalidArguments +from .server import TS3Server +from .defines import * __version__ = "0.1" __license__ = "BSD 3-Clause" diff --git a/ts3/server.py b/ts3/server.py index 2620c82..d1eb268 100644 --- a/ts3/server.py +++ b/ts3/server.py @@ -26,8 +26,8 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import logging -from protocol import TS3Proto, InvalidArguments -from defines import * +from .protocol import TS3Proto, InvalidArguments +from .defines import * class TS3Server(TS3Proto): diff --git a/ts3/test.py b/ts3/test.py index 343e25d..a995b29 100644 --- a/ts3/test.py +++ b/ts3/test.py @@ -1,5 +1,5 @@ import unittest -from protocol import TS3Proto +from .protocol import TS3Proto class TS3ProtoTest(unittest.TestCase): """ Tests the TS3Proto class """