summaryrefslogtreecommitdiffstats
path: root/ipsilon/util/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipsilon/util/user.py')
-rwxr-xr-xipsilon/util/user.py4
1 files changed, 2 insertions, 2 deletions
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 <http://www.gnu.org/licenses/>.
-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