From b48c9981fb1a0728ca5627a38e35f146f65266fc Mon Sep 17 00:00:00 2001 From: Mark Sandstrom Date: Sun, 22 Aug 2010 12:14:41 -0700 Subject: minor correction to the LazyAttributeSequence example in the readme --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.rst') 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 -- cgit v1.2.3