This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bill_sanjose
Recipients JT.Johnson, Sworddragon, amaury.forgeotdarc, bill_sanjose, eric.araujo, eric.smith, loewis, mark.dickinson, tomzych
Date 2010-09-14.23:51:47
SpamBayes Score 1.8609189e-08
Marked as misclassified No
Message-id <1284508309.67.0.628324069922.issue7936@psf.upfronthosting.co.za>
In-reply-to
Content
I found this page while encountering the same problem (only one argument, the scriptname, being passed in from the command line), and wanted to post the following workaround.  I'm running Vista and using Python 2.6.
In summary I had to have 'python' at the beginning of the command line.
I found:
this did not work:  c:\>django-admin startproject mysite
this DID work:      c:\>python django-admin startproject mysite

Before finding this fix:
I had tried the 'ftype Python.File' and 'assoc .py' commands mentioned in other posts above and gotten the equivalent of 'not found'.
I actually found the correct info in the registry under HKEY_CURRENT_USER, but 'ftype' and 'assoc' don't appear to read from there.
I modified the registry under HKEY_LOCAL_MACHINE, and then I was getting the responses that were claimed to be needed in msg99369 above, but this did NOT fix the problem.
It was after the above that I found the solution - use 'python' at the beginning of the command line and all args are passed in.
(I did not go back and remove the registry edits that I made to prove conclusively that they are not part of the solution, but I doubt that they are.)
History
Date User Action Args
2010-09-14 23:51:49bill_sanjosesetrecipients: + bill_sanjose, loewis, amaury.forgeotdarc, mark.dickinson, eric.smith, eric.araujo, JT.Johnson, tomzych, Sworddragon
2010-09-14 23:51:49bill_sanjosesetmessageid: <1284508309.67.0.628324069922.issue7936@psf.upfronthosting.co.za>
2010-09-14 23:51:48bill_sanjoselinkissue7936 messages
2010-09-14 23:51:47bill_sanjosecreate