From 47ff1fb4cd7a6c416c93246decacd19628b232c3 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 24 Jan 2014 15:57:28 -0500 Subject: Fix Imports Based on patches by Petr Voborni Signed-off-by: Simo Sorce --- ipsilon/util/user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipsilon/util/user.py') diff --git a/ipsilon/util/user.py b/ipsilon/util/user.py index 1241340..3b58724 100755 --- a/ipsilon/util/user.py +++ b/ipsilon/util/user.py @@ -17,7 +17,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from util import data +from ipsilon.util.data import Store class Site(object): def __init__(self, value): @@ -35,7 +35,7 @@ class User(object): self.name = username def _get_user_data(self, username): - store = data.Store() + store = Store() return store._get_user_preferences(username) @property -- cgit