Ticket #1197: django.magic-removal.mod_name.patch
File django.magic-removal.mod_name.patch, 603 bytes (added by , 19 years ago) |
---|
-
django/core/management.py
521 521 s = StringIO() 522 522 num_errors = get_validation_errors(s) 523 523 if num_errors: 524 sys.stderr.write("Error: %s couldn't be installed, because there were errors in your model:\n" % mod_name)524 sys.stderr.write("Error: %s couldn't be installed, because there were errors in your model:\n" % app_name) 525 525 s.seek(0) 526 526 sys.stderr.write(s.read()) 527 527 sys.exit(1)