diff options
Diffstat (limited to 'src/dmierror.c')
-rw-r--r-- | src/dmierror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dmierror.c b/src/dmierror.c index 03d260a..7e13a93 100644 --- a/src/dmierror.c +++ b/src/dmierror.c @@ -66,7 +66,7 @@ void _pyReturnError(void *exception, const char *fname, int line, const char *fm // Set the error state and message snprintf(buf, 4096, "[%s:%i] %s", fname, line, fmt); - /// PyErr_Format(exception, buf, ap); + PyErr_Format(exception, buf, ap); #ifdef PRINT_ERRORS fprintf(stderr, "\n**\n** ERROR: "); |