Opened 17 years ago

Closed 17 years ago

Last modified 17 years ago

#5185 closed (worksforme)

manage.py startapp gives stacktrace

Reported by: vlipper@… Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

../django/django_src/django/bin/django-admin.py startapp polls works, but
python manage.py startapp polls not:

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 180, in execute_manager

utility.execute(argv)

File "/usr/lib/python2.4/site-packages/django/core/management/init.py", line 124, in execute

command.execute(*args[1:], options.dict)

File "/usr/lib/python2.4/site-packages/django/core/management/base.py", line 33, in execute

output = self.handle(*args, options)

TypeError: handle() got an unexpected keyword argument 'indent'

I'm working against the latest SVN version.

I'm a complete Python newbe, but very experienced in Java. It looks promising! Good tutorial as well!

Change History (2)

comment:1 by Chris Beaven, 17 years ago

Resolution: worksforme
Status: newclosed

Works for me - the management internals have just changed in the last day, so there was a wee bit of instability and fast fixes. Can you please update to latest SVN again, test and reopen if this is still a problem?

comment:2 by vlipper@…, 17 years ago

Works again!

Note: See TracTickets for help on using tickets.
Back to Top