Hi,

I'm running the SVN release on Django checked out today:

Path: .
URL: http://code.djangoproject.com/svn/django/trunk
Repository Root: http://code.djangoproject.com/svn
Repository UUID: bcc190cf-cafb-0310-a4f2-bffc1f526a37
Revision: 12743
Node Kind: directory
Schedule: normal
Last Changed Author: mtredinnick
Last Changed Rev: 12743
Last Changed Date: 2010-03-10 11:41:41 +0800 (Wed, 10 Mar 2010)

I was running python manage.py inspectdb on a database with hundreds
of tables and it "hung" for several minutes on a complicated view.
Intending to remove the view then re-run inspectdb I attempted to
interrupt it with ^C but that failed so I sent a SIGTERM. Now, when I
try to run python manage.py inspectdb I immediately get a Traceback:

$ python manage.py inspectdb
Traceback (most recent call last):
  File "manage.py", line 11, in ?
    execute_manager(settings)
  File "/usr/lib/python2.4/site-packages/django/core/management/
__init__.py", line 438, in execute_manager
    utility.execute()
  File "/usr/lib/python2.4/site-packages/django/core/management/
__init__.py", line 379, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/usr/lib/python2.4/site-packages/django/core/management/
__init__.py", line 257, in fetch_command
    klass = load_command_class(app_name, subcommand)
  File "/usr/lib/python2.4/site-packages/django/core/management/
__init__.py", line 67, in load_command_class
    module = import_module('%s.management.commands.%s' % (app_name,
name))
  File "/usr/lib/python2.4/site-packages/django/utils/importlib.py",
line 35, in import_module
    __import__(name)
  File "/usr/lib/python2.4/site-packages/django/core/management/
commands/inspectdb.py", line 5, in ?
    from django.db import connections, DEFAULT_DB_ALIAS
  File "/usr/lib/python2.4/site-packages/django/db/__init__.py", line
83, in ?
    signals.request_finished.connect(close_connection)
  File "/usr/lib/python2.4/site-packages/django/dispatch/
dispatcher.py", line 86, in connect
    argspec = inspect.getargspec(receiver)
AttributeError: 'module' object has no attribute 'getargspec'

Would you mind letting me know how to fix it or what I should read up
on to try to fix it myself? Is there any other information needed?

Cheers,
Chris

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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