Index: /issm/trunk-jpl/src/c/shared/Exceptions/Exceptions.cpp
===================================================================
--- /issm/trunk-jpl/src/c/shared/Exceptions/Exceptions.cpp	(revision 19700)
+++ /issm/trunk-jpl/src/c/shared/Exceptions/Exceptions.cpp	(revision 19701)
@@ -80,5 +80,5 @@
 	return;
 }/*}}}*/
-const char* ErrorException::MatlabReport() const{/*{{{*/
+const char* ErrorException::WrapperReport() const{/*{{{*/
 
 	/*Output*/
@@ -100,22 +100,2 @@
 	return message;
 }/*}}}*/
-const char* ErrorException::PythonReport() const{/*{{{*/
-
-	/*Output*/
-	std::ostringstream buffer;
-	char *message = NULL;
-
-	/*WINDOWS*/
-	if(!function_name || file_line==0){ 
-		buffer << " error message: " << this->what_str;
-	}
-	else{
-		buffer << "\nError in ==> " << this->file_name << ":" << file_line << "\n";
-		buffer << this->function_name << " error message: " << this->what_str;
-	}
-
-	/*Convert std::ostringstream to std::string and then create char* */
-	std::string buffer2 = buffer.str();
-	message = xNew<char>(strlen(buffer2.c_str())+1); sprintf(message,"%s",buffer2.c_str());
-	return message;
-}/*}}}*/
Index: /issm/trunk-jpl/src/c/shared/Exceptions/exceptions.h
===================================================================
--- /issm/trunk-jpl/src/c/shared/Exceptions/exceptions.h	(revision 19700)
+++ /issm/trunk-jpl/src/c/shared/Exceptions/exceptions.h	(revision 19701)
@@ -87,6 +87,5 @@
 	virtual const char *what() const throw();
 	void Report() const;
-	const char* MatlabReport() const;
-	const char* PythonReport() const;
+	const char* WrapperReport() const;
 
 };
Index: /issm/trunk-jpl/src/wrappers/matlab/include/wrapper_macros.h
===================================================================
--- /issm/trunk-jpl/src/wrappers/matlab/include/wrapper_macros.h	(revision 19700)
+++ /issm/trunk-jpl/src/wrappers/matlab/include/wrapper_macros.h	(revision 19701)
@@ -23,5 +23,5 @@
 #define MODULEEND(); }\
 	catch(ErrorException &exception){\
-		mexErrMsgTxt(exception.MatlabReport()); \
+		mexErrMsgTxt(exception.WrapperReport()); \
 	}\
 	catch (exception &e){\
Index: /issm/trunk-jpl/src/wrappers/python/include/wrapper_macros.h
===================================================================
--- /issm/trunk-jpl/src/wrappers/python/include/wrapper_macros.h	(revision 19700)
+++ /issm/trunk-jpl/src/wrappers/python/include/wrapper_macros.h	(revision 19701)
@@ -27,5 +27,5 @@
 #define MODULEEND(); }\
   catch(ErrorException &exception){\
-	  PyErr_SetString(PyExc_TypeError,exception.PythonReport()); \
+	  PyErr_SetString(PyExc_TypeError,exception.WrapperReport()); \
 	  return NULL;\
   } \
