[1.8.x] Fixed typo in docs/ref/models/expressions.txt

Backport of 756a727252 from master
This commit is contained in:
Ian Foote 2015-05-07 23:14:52 +01:00 committed by Tim Graham
parent 9116a3c591
commit eb534f6412
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ to play nice with other query expressions::
def get_source_expressions(self):
return self.expressions
def set_source_expressions(expressions):
def set_source_expressions(self, expressions):
self.expressions = expressions
Let's see how it works::