Get rid of another use of PyArg_Parse()
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 64418e4..b22009d 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -736,8 +736,8 @@
 
 	/* old style errors */
 	if (PyTuple_Check(err))
-		return PyArg_Parse(err, "(O(ziiz))", message, filename,
-				   lineno, offset, text);
+		return PyArg_ParseTuple(err, "O(ziiz)", message, filename,
+				        lineno, offset, text);
 
 	/* new style errors.  `err' is an instance */