Changeset 5738
- Timestamp:
- 07/20/07 22:30:38 (1 year ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/django/core/management.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r5723 r5738 118 118 martin.glueck@gmail.com 119 119 GomoX <gomo@datafull.com> 120 Mario Gonzalez <gonzalemario @tgmail.com>120 Mario Gonzalez <gonzalemario@gmail.com> 121 121 Simon Greenhill <dev@simon.net.nz> 122 122 Owen Griffiths django/trunk/django/core/management.py
r5726 r5738 1237 1237 error_text = str(e) 1238 1238 sys.stderr.write(style.ERROR("Error: %s" % error_text) + '\n') 1239 sys.exit(1) 1239 # Need to use an OS exit because sys.exit doesn't work in a thread 1240 os._exit(1) 1240 1241 except KeyboardInterrupt: 1241 1242 sys.exit(0)
