From: Rob van der Linde Date: Tue, 28 Nov 2023 02:02:00 +0000 (+1300) Subject: python: fix missing colon around param in docstring X-Git-Tag: talloc-2.4.2~444 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=35d71bfc6f5cf379ac64a289bf97a6e4ddac1d20;p=thirdparty%2Fsamba.git python: fix missing colon around param in docstring Signed-off-by: Rob van der Linde Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/__init__.py b/python/samba/__init__.py index 6eb0d01d1cf..3e6ea7d18e1 100644 --- a/python/samba/__init__.py +++ b/python/samba/__init__.py @@ -292,7 +292,7 @@ def read_and_sub_file(file_name, subst_vars): """Read a file and sub in variables found in it :param file_name: File to be read (typically from setup directory) - param subst_vars: Optional variables to substitute in the file. + :param subst_vars: Optional variables to substitute in the file. """ with open(file_name, 'r', encoding="utf-8") as data_file: data = data_file.read()