From 88d8beec0a1196fd33332fe18e893dae796dc505 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 1 Oct 1997 04:43:39 +0000 Subject: Oops, forgot one. --- Modules/cdmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/cdmodule.c b/Modules/cdmodule.c index 3653a03..71598d7 100644 --- a/Modules/cdmodule.c +++ b/Modules/cdmodule.c @@ -854,7 +854,7 @@ initcd() m = Py_InitModule("cd", CD_methods); d = PyModule_GetDict(m); - CdError = PyString_FromString("cd.error"); + CdError = PyErr_NewException("cd.error", NULL, NULL); PyDict_SetItemString(d, "error", CdError); /* Identifiers for the different types of callbacks from the parser */ -- cgit v0.12