summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <davids@redhat.com>2015-02-04 16:34:48 +0100
committerDavid Sommerseth <davids@redhat.com>2015-02-04 16:34:48 +0100
commitd3641c71a7826dbedd3504749297d1a9d253603f (patch)
tree42a8637f309574a5868def0a98cba042ad80b956
parent3b32d9d05a785a744f5e315ef9267d67723e082c (diff)
downloadpython-dmidecode-d3641c71a7826dbedd3504749297d1a9d253603f.tar.gz
python-dmidecode-d3641c71a7826dbedd3504749297d1a9d253603f.tar.xz
python-dmidecode-d3641c71a7826dbedd3504749297d1a9d253603f.zip
Fix silly typo
Signed-off-by: David Sommerseth <davids@redhat.com>
-rw-r--r--src/dmidecodemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dmidecodemodule.c b/src/dmidecodemodule.c
index b31c002..d914987 100644
--- a/src/dmidecodemodule.c
+++ b/src/dmidecodemodule.c
@@ -260,7 +260,7 @@ xmlNode* load_mappingxml(options *opt) {
// Load mapping into memory
opt->mappingxml = xmlReadFile(opt->python_xml_map, NULL, 0);
if( opt->mappingxml == NULL ) {
- PyReturnError(PyExc_IOError, "Could not open tje XML mapping file '%s'",
+ PyReturnError(PyExc_IOError, "Could not open the XML mapping file '%s'",
opt->python_xml_map);
}
}