Opened 17 years ago

Closed 17 years ago

#5597 closed (worksforme)

manager.py doesn't accept --noreload option

Reported by: mikhail@… Owned by: nobody
Component: django-admin.py runserver Version: dev
Severity: Keywords: django-admin noreload runserver
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

$ django-admin.py runserver --noreload
Usage: /usr/bin/django-admin.py runserver [options] [--noreload] [--adminmedia=ADMIN_MEDIA_PATH] [optional port number, or ipaddr:port]

Starts a lightweight Web server for development.

/usr/bin/django-admin.py: error: no such option: --noreload

Change History (1)

comment:1 by Matt Boersma, 17 years ago

Keywords: django-admin noreload runserver added
Resolution: worksforme
Status: newclosed

I tried this on a Windows box and on two different Linuxes, using [6033] and [6424], and can't see the problem. Both "./manage.py" and "django-admin.py' work fine with "--noreload":
(((
mboersma@marmaladesky:~/projects/sprout$ django-admin.py runserver --noreload
Validating models...
0 errors found

Django version 0.97-pre-SVN-6424, using settings 'sprout.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
)))

You should check which version of Django you're using with the "--version" flag--I have a feeling it's not the current SVN sources.

Note: See TracTickets for help on using tickets.
Back to Top