summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorMark Sandstrom <mark@deliciouslynerdy.com>2010-08-22 12:14:41 -0700
committerMark Sandstrom <mark@deliciouslynerdy.com>2010-08-22 12:14:41 -0700
commitb48c9981fb1a0728ca5627a38e35f146f65266fc (patch)
tree300a300bc5839c4552a07da413f7e4d441dd89b8 /README.rst
parent8e1a3cde43f740a71fd6e97865a6cf957c66fac1 (diff)
downloadfactory-boy-b48c9981fb1a0728ca5627a38e35f146f65266fc.tar
factory-boy-b48c9981fb1a0728ca5627a38e35f146f65266fc.tar.gz
minor correction to the LazyAttributeSequence example in the readme
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 92816a4..cb73a17 100644
--- a/README.rst
+++ b/README.rst
@@ -164,4 +164,4 @@ Sequences can be combined with lazy attributes::
name = 'Mark'
email = factory.LazyAttributeSequence(lambda a, n: '{0}+{1}@example.com'.format(a.name, n).lower())
- UserFactory().email # => mark+1@example.com
+ UserFactory().email # => mark+0@example.com