summaryrefslogtreecommitdiff
path: root/docs/quick_tour.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2015-11-12 12:56:27 -0600
committerMichael Merickel <michael@merickel.org>2015-11-12 12:56:46 -0600
commit414b67b45bab156b9738105e180908c4eee8600a (patch)
tree6a9ee22d939c88f35786da0f06ff32b98102e374 /docs/quick_tour.rst
parentb4c96d2892d8271b300b1920e3ce5d2c0eae588b (diff)
downloadpyramid-414b67b45bab156b9738105e180908c4eee8600a.tar.gz
pyramid-414b67b45bab156b9738105e180908c4eee8600a.tar.bz2
pyramid-414b67b45bab156b9738105e180908c4eee8600a.zip
Restore progress after backing changes out of master.
This reverts commit 049e670aef9ea5611561546fd5c0e2dd6152b9b7.
Diffstat (limited to 'docs/quick_tour.rst')
-rw-r--r--docs/quick_tour.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst
index be5be2e36..87c6f1e1c 100644
--- a/docs/quick_tour.rst
+++ b/docs/quick_tour.rst
@@ -818,14 +818,14 @@ The ORM eases the mapping of database structures into a programming
language. SQLAlchemy uses "models" for this mapping. The scaffold
generated a sample model:
-.. literalinclude:: quick_tour/sqla_demo/sqla_demo/models.py
+.. literalinclude:: quick_tour/sqla_demo/sqla_demo/models/mymodel.py
:start-after: Start Sphinx Include
:end-before: End Sphinx Include
View code, which mediates the logic between web requests and the rest
of the system, can then easily get at the data thanks to SQLAlchemy:
-.. literalinclude:: quick_tour/sqla_demo/sqla_demo/views.py
+.. literalinclude:: quick_tour/sqla_demo/sqla_demo/views/default.py
:start-after: Start Sphinx Include
:end-before: End Sphinx Include