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", "philfour.settings")
django.core.management.execute_from_command_line(sys.argv)


On Monday, August 11, 2014 11:00:22 AM UTC-5, Chris Seberino wrote:
>
> 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 <module>
>     django.core.management.execute_manager(settings)
> AttributeError: 'module' object has no attribute 'execute_manager'
>
> I want to use the Django shell with "./manage.py shell".
>
>
> Here is my full manage.py...
>
> #!/usr/bin/env python
>
> import settings
> import django.core.management
>
> django.core.management.execute_manager(settings)
>
> Thanks,
>
> cs
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/426e4bef-707f-44d3-9306-f8b9b5bb899a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to