Kaydet (Commit) ac2359cf authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

pyuno: close opened parenthesis in raised exception message

üst 21192c6e
...@@ -166,6 +166,7 @@ static PyRef importUnoModule( ) throw ( RuntimeException ) ...@@ -166,6 +166,7 @@ static PyRef importUnoModule( ) throw ( RuntimeException )
PyRef valueRep( PyObject_Repr( excValue.get() ), SAL_NO_ACQUIRE ); PyRef valueRep( PyObject_Repr( excValue.get() ), SAL_NO_ACQUIRE );
buf.appendAscii( PyString_AsString( valueRep.get())).appendAscii( ", traceback follows\n" ); buf.appendAscii( PyString_AsString( valueRep.get())).appendAscii( ", traceback follows\n" );
buf.appendAscii( PyString_AsString( str.get() ) ); buf.appendAscii( PyString_AsString( str.get() ) );
buf.appendAscii( ")" );
throw RuntimeException( buf.makeStringAndClear(), Reference< XInterface > () ); throw RuntimeException( buf.makeStringAndClear(), Reference< XInterface > () );
} }
PyRef dict( PyModule_GetDict( module.get() ) ); PyRef dict( PyModule_GetDict( module.get() ) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment