Ticket #5376: docs.patch

File docs.patch, 811 bytes (added by Todd O'Bryan, 17 years ago)
  • docs/django-admin.txt

     
    645645To run the test server on port 7000 with ``fixture1`` and ``fixture2``::
    646646
    647647    django-admin.py testserver --addrport 7000 fixture1 fixture2
    648     django-admin.py testserver fixture1 fixture2 --addrport 8080
     648    django-admin.py testserver fixture1 fixture2 --addrport 7000
    649649
    650650(The above statements are equivalent. We include both of them to demonstrate
    651 that it doesn't matter whether the options come before or after the
    652 ``testserver`` command.)
     651that it doesn't matter whether the options come before or after the fixture
     652arguments to ``testserver``.)
    653653
    654654To run on 1.2.3.4:7000 with a `test` fixture::
    655655
Back to Top