diff options
author | Jeffrey Finkelstein <jeffrey.finkelstein@gmail.com> | 2016-05-03 21:02:29 -0400 |
---|---|---|
committer | Jeffrey Finkelstein <jeffrey.finkelstein@gmail.com> | 2016-05-03 21:02:29 -0400 |
commit | c31833e9973ef3b9fd4528e19eec0458bc8d51ee (patch) | |
tree | 01f751348e4f7fcf7c73877e2cad324e102024da /doc/build/orm/mapped_sql_expr.rst | |
parent | 9a3c9ba7beb18dfd6232deb895528ea8593a12b0 (diff) | |
download | sqlalchemy-pr/268.tar.gz |
Adds parentheses around print statements in docs.pr/268
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:: |