summaryrefslogtreecommitdiff
path: root/examples/beaker_caching/model.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-07-28 17:05:50 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-07-28 17:05:50 -0400
commit22ba1c43b792953ae6f791512d276739c8c09eae (patch)
treebdf9f639b01426a8a2e1c8c61d35533026dd4265 /examples/beaker_caching/model.py
parent27913554a85c308d81e6c018669d0246ceecc639 (diff)
downloadsqlalchemy-22ba1c43b792953ae6f791512d276739c8c09eae.tar.gz
-whitespace bonanza, contd
Diffstat (limited to 'examples/beaker_caching/model.py')
-rw-r--r--examples/beaker_caching/model.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/beaker_caching/model.py b/examples/beaker_caching/model.py
index 629b263a7..a6733962d 100644
--- a/examples/beaker_caching/model.py
+++ b/examples/beaker_caching/model.py
@@ -1,5 +1,5 @@
"""Model. We are modeling Person objects with a collection
-of Address objects. Each Address has a PostalCode, which
+of Address objects. Each Address has a PostalCode, which
in turn references a City and then a Country:
Person --(1..n)--> Address
@@ -70,7 +70,7 @@ class Address(Base):
def __str__(self):
return "%s\t"\
"%s, %s\t"\
- "%s" % (self.street, self.city.name,
+ "%s" % (self.street, self.city.name,
self.postal_code.code, self.country.name)
class Person(Base):