AttributeError: 'module' object has no attribute 'revision'
See original GitHub issueI try to install the Django CMS 3.2 from Aldryn (https://github.com/aldryn/aldryn-django-cms), but when I launch the development web server, I have the error bellow :
AttributeError: 'module' object has no attribute 'revision
I also try to reproduce this error outside the CMS addons ecosystem, so I execute this command :
(Python-2.7.10)[root@localhost Desktop]# python -c ‘import reversion; print reversion.revisions.version’
The error is look like the same :
Traceback (most recent call last): File "<string>", line 1, in <module> AttributeError: 'module' object has no attribute 'revisions' (Python-2.7.10)[root@localhost Desktop]# python -c 'import reversion; print reversion.revisions.__version__'
I’m using Python 2.7.10, Django 1.8.7, Django CMS 3.2, PostgreSQL 9.2
Issue Analytics
- State:
- Created 8 years ago
- Comments:6 (4 by maintainers)
Top GitHub Comments
Please read the changelog for the latest release. It’ll tell you how to fix your code.
https://github.com/etianen/django-reversion/blob/master/CHANGELOG.md On Fri, 4 Dec 2015 at 10:23, JimyRyan notifications@github.com wrote:
Thanks for your fast response ! My trouble is now solved 😃
Have an nice night.