minor typo and formatting improvements

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10868 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2008-09-18 20:16:50 +00:00
commit 7ec3c4ae81
3 changed files with 5 additions and 8 deletions

View file

@ -59,8 +59,7 @@ SWIG_Python_AddErrorMsg(const char* mesg)
PyErr_Clear();
Py_XINCREF(type);
PyErr_Format(type, "%s %s",
SWIG_Python_str_AsChar(old_str), mesg);
PyErr_Format(type, "%s %s", SWIG_Python_str_AsChar(old_str), mesg);
Py_DECREF(old_str);
Py_DECREF(value);
} else {