Re: Why this error when run manage.py?-->AttributeError: 'module' object has no attribute 'execute_manager'

2014-08-11 Thread Chris Seberino
Solved. It appears I made some changes to manage.py that are not allowed. Moving manage.py back outside of the project and leaving just the following worked... #!/usr/bin/env python import django.core.management import sys import os os.environ.setdefault("DJANGO_SETTINGS_MODULE",

Why this error when run manage.py?-->AttributeError: 'module' object has no attribute 'execute_manager'

2014-08-11 Thread Chris Seberino
My fresh Django install on Ubuntu 14.04 works fine. WSGI starts the app up just fine. I can run manage.py without getting this error... % ./manage.py Traceback (most recent call last): File "./manage.py", line 6, in django.core.management.execute_manager(settings) AttributeError: