summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-11-11 18:24:24 -0800
committerSteve Piercy <web@stevepiercy.com>2015-11-11 18:24:24 -0800
commita99fcc4a13b23311cbdd53f7d978a8e26b78d1a5 (patch)
treeb8272cbb42491f718e9fa2da16e3db0a219c9134 /docs
parent8a14c0d5b668d74c2ceab2e69d7ea9e77eb4bad0 (diff)
parent91ccc4540800708e7d312fe4a988edb0a9543624 (diff)
downloadpyramid-a99fcc4a13b23311cbdd53f7d978a8e26b78d1a5.tar.gz
pyramid-a99fcc4a13b23311cbdd53f7d978a8e26b78d1a5.tar.bz2
pyramid-a99fcc4a13b23311cbdd53f7d978a8e26b78d1a5.zip
Merge pull request #2107 from stevepiercy/feature/alchemy-scaffold-update
update references in literalincludes
Diffstat (limited to 'docs')
-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