Re: django-admin.py startproject creating duplicate settings.py files

2012-02-21 Thread Florian Apolloner
Cause ``reset --hard`` only resets managed files, not unmanaged files. ``git clean -fdx`` would have done the job (make sure to read the help before issuing that command). Cheers, Florian -- You received this message because you are subscribed to the Google Groups "Django developers" group. T

Re: django-admin.py startproject creating duplicate settings.py files

2012-02-21 Thread Yo-Yo Ma
Thanks, Carl. To fix this issue, I had to delete my local git clone of the django repo, and then clone the github mirror again before reinstalling. I thought it was due to the /build in the repo, but for some reason a ``reset --hard`` didn't even fix it, so I'm not sure how a rm -r then re-cloning

Re: django-admin.py startproject creating duplicate settings.py files

2012-02-20 Thread Aymeric Augustin
On 21 févr. 2012, at 04:31, Yo-Yo Ma wrote: > I have trunk installed from last night, and this is actual terminal > output (except for the stuff omitted on the left of the $): > > (my_venv) myusername$ django-admin.py startproject foobarz > (my_venv) myusername$ ls foobarz/ > __init__.py foobar

Re: django-admin.py startproject creating duplicate settings.py files

2012-02-20 Thread Carl Meyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/20/2012 09:19 PM, Yo-Yo Ma wrote: > (myvenv)My-Names-MacBook-Pro:dev myusername$ mkdir test_startproject > (myvenv)My-Names-MacBook-Pro:dev myusername$ cd test_startproject/ > (myvenv)My-Names-MacBook-Pro:test_startproject myusername$ ls -a > .

Re: django-admin.py startproject creating duplicate settings.py files

2012-02-20 Thread Yo-Yo Ma
Hey Carl, Thanks for the reply. I removed everything from my venv's site- packages directory (except PIL and some other graph library), then checked to make sure I wasn't able to use django-admin.py or my app's manage.py scripts (ie, making sure there wasn't a global Django install). I then reinst

Re: django-admin.py startproject creating duplicate settings.py files

2012-02-20 Thread Carl Meyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/20/2012 08:31 PM, Yo-Yo Ma wrote: > I have trunk installed from last night, and this is actual terminal > output (except for the stuff omitted on the left of the $): > > (my_venv) myusername$ django-admin.py startproject foobarz > (my_venv) myus

django-admin.py startproject creating duplicate settings.py files

2012-02-20 Thread Yo-Yo Ma
I have trunk installed from last night, and this is actual terminal output (except for the stuff omitted on the left of the $): (my_venv) myusername$ django-admin.py startproject foobarz (my_venv) myusername$ ls foobarz/ __init__.py foobarz manage.py settings.py urls.py (my_v