summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-04-05 12:31:07 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2021-04-05 13:28:14 +0200
commitd67829bdd37631d4c986e2b2658ebee471974e4d (patch)
treea1e1f053e8e706c2164a7a86c4a6022bf9e45a73 /wizards
parent8109dd0217cb8d8faac185176d638d7af588a520 (diff)
Fix variable name
Change-Id: Ida5172f860303fa9493dd3477a970d29f87444de Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113596 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins
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 b0c6c53077d5..68446e53fcfc 100644
--- a/wizards/source/scriptforge/python/scriptforge.py
+++ b/wizards/source/scriptforge/python/scriptforge.py
@@ -1343,7 +1343,7 @@ class SFScriptForge:
propertysynonyms = SFServices._getAttributeSynonyms(serviceproperties)
# Class constants
- MACROEXECALWAYS, MAROEXECNEVER, MACROEXECNORMAL = 2, 1, 0
+ MACROEXECALWAYS, MACROEXECNEVER, MACROEXECNORMAL = 2, 1, 0
BASEDOCUMENT, CALCDOCUMENT, DRAWDOCUMENT, IMPRESSDOCUMENT, MATHDOCUMENT, WRITERDOCUMENT = \
'Base', 'Calc', 'Draw', 'Impress', 'Math', 'Writer'