summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-23 19:38:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-07-26 08:36:46 +0200
commitca3ddcf2cb8a7b69131a310621be18d044122a1c (patch)
treed6d85891ba4132d84356a88df3db9d4a60d1bab1 /pyuno
parent01d780e2fa42ba04b55104cb012f00b6b3cbb162 (diff)
Fix typo in code
Not tested with "make check", but for me cleary a mistake. I have "maybeambiguous" in the rest of the code, but no "maybeambigous". Change-Id: I327143b3e6e188fe661846f5d9b6d2806926d492 Reviewed-on: https://gerrit.libreoffice.org/76201 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/unohelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/unohelper.py b/pyuno/source/module/unohelper.py
index a3e2141e7f84..cf6f78d63b32 100644
--- a/pyuno/source/module/unohelper.py
+++ b/pyuno/source/module/unohelper.py
@@ -58,7 +58,7 @@ def _propertymode_to_str( mode ):
if PROP_ATTR_MAYBEDEFAULT & mode:
ret = ret + "maybedefault "
if PROP_ATTR_MAYBEAMBIGUOUS & mode:
- ret = ret + "maybeambigous "
+ ret = ret + "maybeambiguous "
if PROP_ATTR_READONLY & mode:
ret = ret + "readonly "
if PROP_ATTR_TRANSIENT & mode: