Ticket #10725: 10725.patch

File 10725.patch, 553 bytes (added by Aymeric Augustin, 13 years ago)
  • django/utils/autoreload.py

     
    115115            pass
    116116    else:
    117117        try:
    118             sys.exit(restart_with_reloader())
     118            exit_code = restart_with_reloader()
     119            if exit_code < 0:
     120                os.kill(os.getpid(), -exit_code)
     121            else:
     122                sys.exit(exit_code)
    119123        except KeyboardInterrupt:
    120124            pass
    121125
Back to Top