From b6eab9d7e27319081ff747f9f3e9203a8162ccaa Mon Sep 17 00:00:00 2001 From: technicaltitch Date: Thu, 27 Aug 2020 10:40:16 +0300 Subject: [PATCH] Tiny fix to `set` documenation (#331) Fix a small typo in the documentation explaining how to set a file type input. --- mechanicalsoup/form.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mechanicalsoup/form.py b/mechanicalsoup/form.py index 2820b592..26136623 100644 --- a/mechanicalsoup/form.py +++ b/mechanicalsoup/form.py @@ -263,7 +263,7 @@ def set(self, name, value, force=False): .. code-block:: python - form.set("tagname") = path_to_local_file + form.set("tagname", path_to_local_file) """ for func in ("checkbox", "radio", "input", "textarea", "select"):