From def97776071f9e502a1e45537af08769bb5f9e24 Mon Sep 17 00:00:00 2001 From: Lorenzo Mele Date: Tue, 14 Apr 2015 01:03:29 +0200 Subject: [PATCH] Update __init__.py fixing issue #41: importing client is made using relative path --- spotipy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotipy/__init__.py b/spotipy/__init__.py index 9339d2a..9be1dce 100644 --- a/spotipy/__init__.py +++ b/spotipy/__init__.py @@ -1,2 +1,2 @@ VERSION='2.0.1' -from client import Spotify, SpotifyException +from .client import Spotify, SpotifyException