From f19a7b90bd0cbdf40d02f125db3e39f077f3a89f Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 27 Apr 2008 18:40:21 +0000 Subject: A little reformating of Py3k warnings --- Python/sysmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/sysmodule.c') diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 83d7d68bb2..a9ab6a7c99 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -173,7 +173,7 @@ sys_exc_clear(PyObject *self, PyObject *noargs) PyObject *tmp_type, *tmp_value, *tmp_tb; if (PyErr_WarnPy3k("sys.exc_clear() not supported in 3.x; " - "use except clauses", 1) < 0) + "use except clauses", 1) < 0) return NULL; tstate = PyThreadState_GET(); -- cgit v1.2.1