Fixed #31110 -- Fixed typo in docs/ref/models/expressions.txt.

This commit is contained in:
Taoup 2019-12-22 03:33:04 +08:00 committed by Mariusz Felisiak
parent abeb4599af
commit cebd41e416
1 changed files with 1 additions and 1 deletions

View File

@ -1074,7 +1074,7 @@ Next, we write the method responsible for generating the SQL::
sql_params.extend(params)
template = template or self.template
data = {'expressions': ','.join(sql_expressions)}
return template % data, params
return template % data, sql_params
def as_oracle(self, compiler, connection):
"""