diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-02-21 21:49:44 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-02-21 21:50:01 +0100 |
commit | f68cd77923ed996c372e6814d615c6faf635626a (patch) | |
tree | 3a84c352c14b3c6902be140bdc8d2e3cb5c56fdc /pyuno | |
parent | e052f55236e2cdd4ebe6a126b570415b5a1b4ea5 (diff) |
Fix type unkown -> unknown
Change-Id: I8d55d5ae5ae38ae2b252859b5400e36301f19ef0
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_module.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_module.cxx b/pyuno/source/module/pyuno_module.cxx index 1638abaf1787..f8231045bcf2 100644 --- a/pyuno/source/module/pyuno_module.cxx +++ b/pyuno/source/module/pyuno_module.cxx @@ -396,7 +396,7 @@ static PyObject *createUnoStructHelper( OStringBuffer buf; buf.append( "UNO struct " ); buf.append( PyStr_AsString(structName) ); - buf.append( " is unkown" ); + buf.append( " is unknown" ); PyErr_SetString (PyExc_RuntimeError, buf.getStr()); } } |