diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-24 15:17:01 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-25 12:36:37 +0000 |
commit | 095438e52ccff8eaf12af6b3e3eb5f8c00792416 (patch) | |
tree | 1f9c5ad0e05fa67ff10d970b166ba3641ee60784 /pyuno | |
parent | 25e0872da600c65a08c73c335f0e1ef21b2f00f5 (diff) |
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.py | 2 |
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: |