Ticket #2284: syncdb-whitespace-fix.diff

File syncdb-whitespace-fix.diff, 785 bytes (added by anonymous, 18 years ago)

Patch to fix whitespace problem

  • django/core/management.py

     
    497497                if initial_sql:
    498498                    print "Installing initial data for %s model" % model._meta.object_name
    499499                    try:
    500                         for sql in initial_sql:
     500                        for sql in [sql.strip() for sql in initial_sql]:
     501                            if not sql: continue
     502                            print "Executing '%s'" % sql
    501503                            cursor.execute(sql)
    502504                    except Exception, e:
    503505                        sys.stderr.write("Failed to install initial SQL data for %s model: %s" % \
Back to Top