1
0
mirror of https://github.com/django/django.git synced 2025-04-11 19:12:22 +00:00

Remove pointless fetch_results param

This commit is contained in:
Andrew Godwin 2013-08-09 17:42:56 +01:00
parent fb16ee5a31
commit ae96ad872f

@ -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.
"""