From 3bd4ee2ed235f8b43831ab4bcf5882cb3c070f5b Mon Sep 17 00:00:00 2001 From: cbags <90455270+cbags@users.noreply.github.com> Date: Fri, 6 Jan 2023 14:52:59 +1100 Subject: [PATCH] Correct typo in forms.rst Noticed a "." is listed as the default value for the 'action' parameter in the quick_form method, which I don't think is correct (it should be "") --- docs/forms.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/forms.rst b/docs/forms.rst index 093b7562..4f534ef1 100644 --- a/docs/forms.rst +++ b/docs/forms.rst @@ -29,7 +29,7 @@ Form macro reference -------------------- .. py:function:: quick_form(form,\ - action=".",\ + action="",\ method="post",\ extra_classes=None,\ role="form",\