Ticket #6820: flush.patch

File flush.patch, 521 bytes (added by tpherndon, 16 years ago)

Patch for django/core/management/commands/flush.py to allow completion of runtests.py on PostgreSQL

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

     
    3131            except ImportError:
    3232                pass
    3333
    34         sql_list = sql_flush(self.style, only_django=True)
     34        sql_list = sql_flush(self.style)
    3535
    3636        if interactive:
    3737            confirm = raw_input("""You have requested a flush of the database.
Back to Top