Skip to content

Commit 940d00f

Browse files
committed
Merge branch 'erezarnon-master'
2 parents ef59ab4 + f1b81ce commit 940d00f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased](https://github.com/python-social-auth/social-app-django-mongoengine/commits/master)
99

10+
### Changed
11+
12+
- Updated `get_user_document` import
13+
1014
## [1.0.0](https://github.com/python-social-auth/social-app-django/releases/tag/1.0.0) - 2017-01-22
1115

1216
### Added

social_django_mongoengine/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _get_user_model():
3131
return module_member(custom_model)
3232

3333
try:
34-
from django_mongoengine.mongo_auth.models import get_user_document
34+
from django_mongoengine.mongo_auth.managers import get_user_document
3535
return get_user_document()
3636
except ImportError:
3737
return module_member('mongoengine.django.auth.User')

0 commit comments

Comments
 (0)