From 35d71bfc6f5cf379ac64a289bf97a6e4ddac1d20 Mon Sep 17 00:00:00 2001 From: Rob van der Linde Date: Tue, 28 Nov 2023 15:02:00 +1300 Subject: [PATCH] python: fix missing colon around param in docstring Signed-off-by: Rob van der Linde Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- python/samba/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.47.3