wizards/source/scriptforge/python/scriptforge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit cba7646dbc17cd026f3d2b29006f998ced540f76 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Mon Jan 31 12:01:55 2022 +0100 Commit: Adolfo Jayme Barrientos <fit...@ubuntu.com> CommitDate: Mon Jan 31 14:24:31 2022 +0100 Fix typo Change-Id: I472190c743dd26e88e3400f323ab52fa05c187d9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129215 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com> diff --git a/wizards/source/scriptforge/python/scriptforge.py b/wizards/source/scriptforge/python/scriptforge.py index c4b14ba52ff7..858a3ec77a71 100644 --- a/wizards/source/scriptforge/python/scriptforge.py +++ b/wizards/source/scriptforge/python/scriptforge.py @@ -373,7 +373,7 @@ class ScriptForge(object, metaclass = _Singleton): @staticmethod def unpack_args(kwargs): """ - Convert a dictioany passed as argument to a list alternating keys and values + Convert a dictionary passed as argument to a list alternating keys and values Example: dict(A = 'a', B = 2) => 'A', 'a', 'B', 2 """