From 8ac9d4066579addbf07bd269d79031d10aa348ce Mon Sep 17 00:00:00 2001 From: Nikolaos-Digenis Karagiannis Date: Sun, 9 Mar 2014 15:16:57 +0200 Subject: [PATCH] ItemLoader doc: missing args in replace_value() --- docs/topics/loaders.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/loaders.rst b/docs/topics/loaders.rst index be20ea10a..b9db5daa8 100644 --- a/docs/topics/loaders.rst +++ b/docs/topics/loaders.rst @@ -325,7 +325,7 @@ ItemLoader objects loader.add_value('name', u'name: foo', TakeFirst(), re='name: (.+)') loader.add_value(None, {'name': u'foo', 'sex': u'male'}) - .. method:: replace_value(field_name, value) + .. method:: replace_value(field_name, value, \*processors, \**kwargs) Similar to :meth:`add_value` but replaces the collected data with the new value instead of adding it.