summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/src/models
diff options
context:
space:
mode:
authorChristoph Zwerschke <cito@online.de>2011-06-05 15:27:17 +0200
committerChristoph Zwerschke <cito@online.de>2011-06-05 15:27:17 +0200
commit879bb56558527e402bc8b0135ce2b40d24fe4a12 (patch)
treec3aaa0bb9a27232e2bc70691500298262a57dfbf /docs/tutorials/wiki2/src/models
parentaee35e30083acd3d3c84e7f50db1f17bf6dc2d12 (diff)
downloadpyramid-879bb56558527e402bc8b0135ce2b40d24fe4a12.tar.gz
pyramid-879bb56558527e402bc8b0135ce2b40d24fe4a12.tar.bz2
pyramid-879bb56558527e402bc8b0135ce2b40d24fe4a12.zip
More small fixes made reading the rest of the docs and the tutorials.
Diffstat (limited to 'docs/tutorials/wiki2/src/models')
-rw-r--r--docs/tutorials/wiki2/src/models/tutorial/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki2/src/models/tutorial/models.py b/docs/tutorials/wiki2/src/models/tutorial/models.py
index 797fff929..096b884d9 100644
--- a/docs/tutorials/wiki2/src/models/tutorial/models.py
+++ b/docs/tutorials/wiki2/src/models/tutorial/models.py
@@ -24,8 +24,8 @@ class Page(Base):
data = Column(Text)
def __init__(self, name, data):
- self.name = name
- self.data = data
+ self.name = name
+ self.data = data
def initialize_sql(engine):
DBSession.configure(bind=engine)