summaryrefslogtreecommitdiff
path: root/docs/subfactory.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/subfactory.rst')
-rw-r--r--docs/subfactory.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/subfactory.rst b/docs/subfactory.rst
index 8bc1d8f..1815312 100644
--- a/docs/subfactory.rst
+++ b/docs/subfactory.rst
@@ -14,7 +14,7 @@ This should be used when defining a :py:class:`~factory.Factory` attribute that
# Various fields
first_name = 'John'
- last_name = factory.Sequence(lambda n: 'D%se' % (o * n))
+ last_name = factory.Sequence(lambda n: 'D%se' % ('o' * n)) # De, Doe, Dooe, Doooe, ...
email = factory.LazyAttribute(lambda o: '%s.%s@example.org' % (o.first_name.lower(), o.last_name.lower()))
# A factory for an object with a 'User' field