Bug 1232683
Summary: | horizon manage.py syncdb errors on "App 'openstack_auth' doesn't have a 'user' model." | |||
---|---|---|---|---|
Product: | [Community] RDO | Reporter: | Jasper Spit <js> | |
Component: | python-django-openstack-auth | Assignee: | Matthias Runge <mrunge> | |
Status: | CLOSED CURRENTRELEASE | QA Contact: | ||
Severity: | unspecified | Docs Contact: | ||
Priority: | unspecified | |||
Version: | Kilo | CC: | mrunge, yeylon | |
Target Milestone: | --- | |||
Target Release: | Kilo | |||
Hardware: | Unspecified | |||
OS: | Unspecified | |||
Whiteboard: | ||||
Fixed In Version: | python-django-openstack-auth-1.2.0-4.el7.noarch.rpm | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | ||
Clone Of: | ||||
: | 1234250 (view as bug list) | Environment: | ||
Last Closed: | 2015-09-10 07:19:25 UTC | Type: | Bug | |
Regression: | --- | Mount Type: | --- | |
Documentation: | --- | CRM: | ||
Verified Versions: | Category: | --- | ||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
Cloudforms Team: | --- | Target Upstream Version: | ||
Embargoed: | ||||
Bug Depends On: | ||||
Bug Blocks: | 1234250 |
Description
Jasper Spit
2015-06-17 09:52:12 UTC
I was able to fix this issue by adding from user import User to openstack_auth/__init__.py: git diff diff --git a/openstack_auth/__init__.py b/openstack_auth/__init__.py index 67e4860..cf681c2 100644 --- a/openstack_auth/__init__.py +++ b/openstack_auth/__init__.py @@ -13,5 +13,6 @@ import pbr.version +from user import User __version__ = pbr.version.VersionInfo('django_openstack_auth').version_string() A package update will follow shortly. The version should be in repos now. one additional word: for django-1.8, one should rather use ./manage.py migrate Thanks Matthias! Looking good. |