diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2011-08-20 18:00:52 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2011-08-21 01:46:09 +0200 |
commit | ac2359cf8440c3e04c08566fdf576850f83e6601 (patch) | |
tree | 0b6d845c06ae744cb845a5764eddb6d177441bad /pyuno | |
parent | 21192c6ea981a7f2abb03b53381ecf67980ddb65 (diff) |
pyuno: close opened parenthesis in raised exception message
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_runtime.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx index b62181e92ee4..c09cc5c17b0f 100644 --- a/pyuno/source/module/pyuno_runtime.cxx +++ b/pyuno/source/module/pyuno_runtime.cxx @@ -166,6 +166,7 @@ static PyRef importUnoModule( ) throw ( RuntimeException ) PyRef valueRep( PyObject_Repr( excValue.get() ), SAL_NO_ACQUIRE ); buf.appendAscii( PyString_AsString( valueRep.get())).appendAscii( ", traceback follows\n" ); buf.appendAscii( PyString_AsString( str.get() ) ); + buf.appendAscii( ")" ); throw RuntimeException( buf.makeStringAndClear(), Reference< XInterface > () ); } PyRef dict( PyModule_GetDict( module.get() ) ); |