Skip to content

Commit 0d0e271

Browse files
committed
Merge pull request DjangoGirls#168 from timgraham/django-admin
Updated to use django-admin (.py suffix not required in Django 1.7)
2 parents 2e0ff68 + c6d4cbb commit 0d0e271

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

django_start_project/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ In console you should run (remember that you don't type `(myvenv) ~/djangogirls$
2121
2222
Run on Windows:
2323

24-
(myvenv) ~/djangogirls$ python myvenv\Scripts\django-admin.py startproject mysite .
24+
(myvenv) ~/djangogirls$ python myvenv\Scripts\django-admin startproject mysite .
2525

2626
or on Linux or Mac OS:
2727

28-
(myvenv) ~/djangogirls$ django-admin.py startproject mysite .
28+
(myvenv) ~/djangogirls$ django-admin startproject mysite .
2929

30-
`django-admin.py` is a script that will create the directories and files for you. You should now have a directory structure which looks like this:
30+
`django-admin` is a script that will create the directories and files for you. You should now have a directory structure which looks like this:
3131

3232
djangogirls
3333
├───manage.py

0 commit comments

Comments
 (0)