Ticket #11481: loaddata_proper_err_code.diff

File loaddata_proper_err_code.diff, 815 bytes (added by Justin Lilly, 15 years ago)

Patch which uses sys.exit(1) instead of return.

  • django/core/management/commands/loaddata.py

     
    167167                                            self.style.ERROR("Problem installing fixture '%s': %s\n" %
    168168                                                 (full_path, ''.join(traceback.format_exception(sys.exc_type,
    169169                                                     sys.exc_value, sys.exc_traceback)))))
    170                                     return
     170                                    sys.exit(1)
    171171                                fixture.close()
    172172
    173173                                # If the fixture we loaded contains 0 objects, assume that an
Back to Top