diff options
author | David Sommerseth <davids@redhat.com> | 2009-06-09 21:28:51 +0200 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2009-06-09 21:28:51 +0200 |
commit | b6d42c742d89dda95cc6e371f0fda6bf1d385a45 (patch) | |
tree | 369d7d5d7bca4f3dde8520a47ce6224fe5af61bf /src | |
parent | 23e77d69afdd720456a88f2ab57c69b240c08b6a (diff) | |
download | python-dmidecode-b6d42c742d89dda95cc6e371f0fda6bf1d385a45.tar.gz python-dmidecode-b6d42c742d89dda95cc6e371f0fda6bf1d385a45.tar.xz python-dmidecode-b6d42c742d89dda95cc6e371f0fda6bf1d385a45.zip |
Forgot to remove a comment in dmierror.c
Diffstat (limited to 'src')
-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: "); |