diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-07-15 12:02:04 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-07-15 12:02:04 +0200 |
commit | 1c0db6b8e3b262b9cdba6a32e71c9bbac8b5f7cc (patch) | |
tree | 54fecd587266ebac0efe2bd777d2fc2776fa092b /hyperkitty/views/accounts.py | |
parent | 1a339ac1f7dac6e63b83864b6421aed1b0fdde75 (diff) | |
download | hyperkitty-1c0db6b8e3b262b9cdba6a32e71c9bbac8b5f7cc.tar.gz hyperkitty-1c0db6b8e3b262b9cdba6a32e71c9bbac8b5f7cc.tar.xz hyperkitty-1c0db6b8e3b262b9cdba6a32e71c9bbac8b5f7cc.zip |
Cleanups in the lib/__init__.py file
Diffstat (limited to 'hyperkitty/views/accounts.py')
-rw-r--r-- | hyperkitty/views/accounts.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hyperkitty/views/accounts.py b/hyperkitty/views/accounts.py index 3a91c3d..373390b 100644 --- a/hyperkitty/views/accounts.py +++ b/hyperkitty/views/accounts.py @@ -36,7 +36,8 @@ from social_auth.backends import SocialAuthBackend from hyperkitty.models import UserProfile, Rating, Favorite, LastView from hyperkitty.views.forms import RegistrationForm, UserProfileForm -from hyperkitty.lib import get_store, FLASH_MESSAGES, paginate +from hyperkitty.lib import get_store +from hyperkitty.lib.view_helpers import FLASH_MESSAGES, paginate logger = logging.getLogger(__name__) |