diff options
author | Mark Sandstrom <mark@deliciouslynerdy.com> | 2010-08-22 12:14:41 -0700 |
---|---|---|
committer | Mark Sandstrom <mark@deliciouslynerdy.com> | 2010-08-22 12:14:41 -0700 |
commit | b48c9981fb1a0728ca5627a38e35f146f65266fc (patch) | |
tree | 300a300bc5839c4552a07da413f7e4d441dd89b8 /README.rst | |
parent | 8e1a3cde43f740a71fd6e97865a6cf957c66fac1 (diff) | |
download | factory-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.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |