Hi,
i tried to do a django-admin startproject <project> and it
said that startproject wasn't a valid command.
Weird. django-admin help indeed didn't show the startproject command.
Checked
/usr/lib/python2.4/site-packages/django/core/management/__init__.py
And in the get_commands function, there is a del statement now that
removes the startproject command.
...
if project_directory:
# Remove the "startproject" command from self.commands, because
# that's a django-admin.py command, not a manage.py command.
del _commands['startproject']
...
However, deleting the command makes it unavailable via django-admin.py
Regards,
Benedict
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---