summaryrefslogtreecommitdiffstats
path: root/pyuno
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-03-24 15:17:01 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-03-25 12:36:37 +0000
commit095438e52ccff8eaf12af6b3e3eb5f8c00792416 (patch)
tree1f9c5ad0e05fa67ff10d970b166ba3641ee60784 /pyuno
parentFix typos (diff)
downloadcore-095438e52ccff8eaf12af6b3e3eb5f8c00792416.tar.gz
core-095438e52ccff8eaf12af6b3e3eb5f8c00792416.zip
Fix typos
Change-Id: I14dca0d55c09187690dc1d94936c40b890ca5cea Reviewed-on: https://gerrit.libreoffice.org/35637 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
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 e1e7e35b641c..a3e2141e7f84 100644
--- a/pyuno/source/module/unohelper.py
+++ b/pyuno/source/module/unohelper.py
@@ -62,7 +62,7 @@ def _propertymode_to_str( mode ):
if PROP_ATTR_READONLY & mode:
ret = ret + "readonly "
if PROP_ATTR_TRANSIENT & mode:
- ret = ret + "tranient "
+ ret = ret + "transient "
if PROP_ATTR_CONSTRAINED & mode:
ret = ret + "constrained "
if PROP_ATTR_BOUND & mode: