diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/exception.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/exception.cc b/python/exception.cc index 0da8e51c4..bf4fd190e 100644 --- a/python/exception.cc +++ b/python/exception.cc @@ -73,8 +73,8 @@ ExceptionRegister::get_py_exception(const std::string & name) } } -PythonError::PythonError(const std::string & message) throw () : - Exception(message) +PythonError::PythonError(const std::string & m) throw () : + Exception(m) { } |