Ticket #4372: add_newline.diff

File add_newline.diff, 586 bytes (added by John Shaffer <jshaffer2112@…>, 17 years ago)
  • core/management.py

     
    11381138            return
    11391139        outfile.write('%s error%s found.\n' % (num_errors, num_errors != 1 and 's' or ''))
    11401140    except ImproperlyConfigured:
    1141         outfile.write("Skipping validation because things aren't configured properly.")
     1141        outfile.write("Skipping validation because things aren't configured properly.\n")
    11421142validate.args = ''
    11431143
    11441144def _check_for_validation_errors(app=None):
Back to Top