I just found a bug in some code I submitted earlier that's already been committed. It turns out that the default options to django-admin.py would only get read if they were the first options, but if another option intervened, they'd get lost. In other words,
django-admin.py command --settings=path.tomy.settings --pythonpath=/path/to/pythondir --commandoption would work, but django-admin.py command --commandoption --settings=path.tomy.settings --pythonpath=/path/to/pythondir wouldn't. I have a patch that I think solves the problem, but I'm not sure how to write a test for it or where to put it. Any suggestions? Todd --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" 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-developers?hl=en -~----------~----~----~----~------~----~------~--~---
