From ae96ad872f0bd16c0997991c0a7109e0139f9373 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 9 Aug 2013 17:42:56 +0100 Subject: [PATCH] Remove pointless fetch_results param --- django/db/backends/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/schema.py b/django/db/backends/schema.py index 9bb6bd2428..191e72c53a 100644 --- a/django/db/backends/schema.py +++ b/django/db/backends/schema.py @@ -80,7 +80,7 @@ class BaseDatabaseSchemaEditor(object): # Core utility functions - def execute(self, sql, params=[], fetch_results=False): + def execute(self, sql, params=[]): """ Executes the given SQL statement, with optional parameters. """