Hi All,

So I haven't used Django in a while (like three months), and when I
tried firing up a project in dev from Terminal (in OSX) today using
the "python manage.py runserver" command, I got the following
Traceback:

  File "manage.py", line 14, in <module>
    execute_manager(settings)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/core/management/__init__.py", line 438,
in execute_manager
    utility.execute()
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/core/management/__init__.py", line 379,
in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/core/management/__init__.py", line 261,
in fetch_command
    klass = load_command_class(app_name, subcommand)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/core/management/__init__.py", line 67,
in load_command_class
    module = import_module('%s.management.commands.%s' % (app_name,
name))
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/utils/importlib.py", line 35, in
import_module
    __import__(name)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/core/management/commands/runserver.py",
line 8, in <module>
    from django.core.handlers.wsgi import WSGIHandler
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/core/handlers/wsgi.py", line 12, in
<module>
    from django.core.handlers import base
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/core/handlers/base.py", line 7, in
<module>
    from django.utils.log import getLogger
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/
python2.7/site-packages/django/utils/log.py", line 1, in <module>
    import logging
ImportError: No module named logging

Has anyone ever seen this?  I have no idea what it means.  I haven't
messed with my installation of Django so I don't know why it wouldn't
be able to find all of the modules it previously could.  Any ideas?

-Guillaume

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to