summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2022-01-31 12:01:55 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2022-01-31 14:24:31 +0100
commitcba7646dbc17cd026f3d2b29006f998ced540f76 (patch)
tree64aec3eb19922c4fb93c853551828e5cf410e50d /wizards
parent4f3b6eac84e0a5381f6a9637d29418ae9353deb5 (diff)
Fix typo
Change-Id: I472190c743dd26e88e3400f323ab52fa05c187d9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129215 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/scriptforge/python/scriptforge.py2
1 files changed, 1 insertions, 1 deletions
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
"""