summaryrefslogtreecommitdiffstats
path: root/accounts/views
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2016-01-24 04:33:34 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2016-02-02 04:22:16 +0100
commit152bc7c3155ad3bb44bb3d9b14f8ad1854f09961 (patch)
treeb1c80879d52d76bae4d2111f3208f9690f35602b /accounts/views
parent587b79a8470a0c069f1b1d81e01685baa5e6a39b (diff)
downloadweb-152bc7c3155ad3bb44bb3d9b14f8ad1854f09961.tar.gz
web-152bc7c3155ad3bb44bb3d9b14f8ad1854f09961.tar.bz2
web-152bc7c3155ad3bb44bb3d9b14f8ad1854f09961.zip
Create models.py with Account and Service
Diffstat (limited to 'accounts/views')
-rw-r--r--accounts/views/default/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/views/default/__init__.py b/accounts/views/default/__init__.py
index 52edb10..0074cd9 100644
--- a/accounts/views/default/__init__.py
+++ b/accounts/views/default/__init__.py
@@ -8,7 +8,7 @@ from flask import current_app, redirect, request, g, flash, url_for
from accounts.forms import LoginForm, RegisterForm, RegisterCompleteForm, \
LostPasswordForm, SettingsForm
from accounts.utils import *
-from accounts.account import Account
+from accounts.models import Account
bp = Blueprint('default', __name__)