all repos — openbox @ 9676a6774ba097eb5bbdee8c95260762f6741bcc

openbox fork - make it a bit more like ryudo

change the exception message
Dana Jansens danakj@orodu.net
commit

9676a6774ba097eb5bbdee8c95260762f6741bcc

parent

4ffa9585a5c6a1c3572a9b1d3a914ed5fbde855d

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M wrap/ustring.iwrap/ustring.i

@@ -17,7 +17,7 @@ %typemap(in) ustring {

if (PyString_Check($input)) $1 = otk::ustring(PyString_AsString($input)); else - SWIG_exception(SWIG_TypeError, "ustring expected"); + SWIG_exception(SWIG_TypeError, "string expected"); } %typemap(in) const ustring & (otk::ustring temp) {

@@ -25,7 +25,7 @@ if (PyString_Check($input)) {

temp = otk::ustring(PyString_AsString($input)); $1 = &temp; } else { - SWIG_exception(SWIG_TypeError, "ustring expected"); + SWIG_exception(SWIG_TypeError, "string expected"); } }