Merge pull request #48 from EmilStenstrom/patch-1

Replace reference to spam_user with print to remove some confusion
This commit is contained in:
2016-02-16 11:23:25 -05:00
+1 -1
View File
@@ -36,7 +36,7 @@ Or iterate over them:
.. code:: python
for r in rows:
spam_user(name=r.name, email=r.user_email)
print(r.name, r.user_email)
Values can be accessed many ways: ``row.user_email``, ``row['user_email']``, or ``row[3]``.