diff options
Diffstat (limited to 'doc/build/orm/mapped_sql_expr.rst')
-rw-r--r-- | doc/build/orm/mapped_sql_expr.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/mapped_sql_expr.rst b/doc/build/orm/mapped_sql_expr.rst index e091e33a6..bc9e7a9f7 100644 --- a/doc/build/orm/mapped_sql_expr.rst +++ b/doc/build/orm/mapped_sql_expr.rst @@ -35,7 +35,7 @@ Above, the ``fullname`` attribute is interpreted at both the instance and class level, so that it is available from an instance:: some_user = session.query(User).first() - print some_user.fullname + print(some_user.fullname) as well as usable within queries:: |