diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-09-16 16:01:25 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-09-16 16:01:25 +0000 |
| commit | 4541a4d3a98c390d9306d49fad0357569a3a7e2d (patch) | |
| tree | 3c5fb75f308c2a63411fc2474871d18df2a70c3e | |
| parent | cb02d3437680bbebb969afa725dde773fc58a78b (diff) | |
FIxed #5376 -- Fixed typo in testserver docs
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6363 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/django-admin.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt index 68fcad24fe..0f99987bad 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -645,11 +645,11 @@ Examples: To run the test server on port 7000 with ``fixture1`` and ``fixture2``:: django-admin.py testserver --addrport 7000 fixture1 fixture2 - django-admin.py testserver fixture1 fixture2 --addrport 8080 + django-admin.py testserver fixture1 fixture2 --addrport 7000 (The above statements are equivalent. We include both of them to demonstrate -that it doesn't matter whether the options come before or after the -``testserver`` command.) +that it doesn't matter whether the options come before or after the fixture +arguments.) To run on 1.2.3.4:7000 with a `test` fixture:: |
